Skip to content

Instantly share code, notes, and snippets.

@william8th
Created November 19, 2015 14:17
Show Gist options
  • Save william8th/144e6e011b366d5f7e84 to your computer and use it in GitHub Desktop.
Save william8th/144e6e011b366d5f7e84 to your computer and use it in GitHub Desktop.
Objective-C @Property
@interface WHYPerson : NSObject
@property (nonatomic) NSString *firstName;
@property (nonatomic) NSString *lastName;
@property (nonatomic) NSDate *dateOfBirth;
@property (nonatomic, readonly) NSString *fullName;
...
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment