Created
February 21, 2013 03:40
-
-
Save rentzsch/5001843 to your computer and use it in GitHub Desktop.
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 | |
@property(strong) NSString *firstName; | |
@property(strong) NSString *lastName; | |
- (NSString*)fullName; | |
@end | |
@implementation Person | |
- (NSString*)fullName { | |
return [NSString stringWithFormat:@"%@ %@", self.firstName, self.lastName]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment