Created
July 13, 2011 17:00
-
-
Save cruffenach/1080745 to your computer and use it in GitHub Desktop.
Declaring instance variables for BlogPost
This file contains 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
#import <Foundation/Foundation.h> | |
@class Author; | |
@interface BlogPost : NSObject { | |
NSString *_postName; | |
NSDate *_postDate; | |
Author *_author; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment