Skip to content

Instantly share code, notes, and snippets.

@cruffenach
Created July 13, 2011 17:00
Show Gist options
  • Save cruffenach/1080745 to your computer and use it in GitHub Desktop.
Save cruffenach/1080745 to your computer and use it in GitHub Desktop.
Declaring instance variables for BlogPost
#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