Skip to content

Instantly share code, notes, and snippets.

@loderunner
Last active December 22, 2016 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loderunner/1359efd94c17cfc3201c83b8a187bc48 to your computer and use it in GitHub Desktop.
Save loderunner/1359efd94c17cfc3201c83b8a187bc48 to your computer and use it in GitHub Desktop.
@interface NotRedundant
@property (nonatomic, strong) NSString* title;
@end
@implementation Redundant
@end
@interface Redundant
@property (nonatomic, strong) NSString* title;
@end
@implementation Redundant
@synthesize title = _title;
@end
@interface VeryRedundant {
@private
NSString* _title;
}
@property (nonatomic, strong) NSString* title;
@end
@implementation VeryRedundant
@synthesize title = _title;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment