Skip to content

Instantly share code, notes, and snippets.

@wess
Created January 4, 2013 19:53
Show Gist options
  • Save wess/4455386 to your computer and use it in GitHub Desktop.
Save wess/4455386 to your computer and use it in GitHub Desktop.
@interface MyTableController : UITableViewController
@end
@interface MyTableController()
@property (strong, nonatomic) NSArray *myArray;
@end
@implementation
- (void)viewDidLoad
{
[super viewDidLoad];
self.myArray = @[@"one", @"two", @"three"];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment