Created
November 19, 2015 14:17
-
-
Save william8th/144e6e011b366d5f7e84 to your computer and use it in GitHub Desktop.
Objective-C @Property
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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