Skip to content

Instantly share code, notes, and snippets.

@beelsebob
Created October 10, 2012 09:50
Show Gist options
  • Select an option

  • Save beelsebob/3864438 to your computer and use it in GitHub Desktop.

Select an option

Save beelsebob/3864438 to your computer and use it in GitHub Desktop.
@interface RootViewController : UITableViewController
@property (nonatomic, copy) NSArray *region;
@end
- (void)viewDidLoad
{
[super viewDidLoad];
[self setTableView:[[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped]];
[self setRegion:@[@[@"Bologna", @"Florence", @"Milan"]], @[@"Naples", @"Rome", @"Turin"]]];
[self setTitle:@"Region"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment