Created
January 16, 2019 13:14
-
-
Save onurhuseyincantay/4f6cd65d09827272f418ba4e6fc5c4ec to your computer and use it in GitHub Desktop.
person object declaration example
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 Person:NSObject{ | |
@public | |
NSString *_firstName; | |
NSString *_lastName; | |
@private | |
NSString *_someInternalData; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment