UITableViewを使ってセルを表示させ項目をセットしたい
Appleのプログラミングガイドを参考にして同じコードを書いてみました。
// RootViewController.h
@interface RootViewController: UIViewController {
}
@end
@interface RootViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
@property (nonatomic, strong) NSArray *timeZoneNames;
@end
// RootViewController.mm
#import "RootViewController.h"
@implementation RootViewController
- (void)loadView {
    self.view = [[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease];
    self.view.backgroundColor = [UIColor whiteColor];
    UITableView *tableView = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain];
    tableView.delegate = self;
    tableView.dataSource = self;
    [tableView reloadData];
    self.view = tableView;
}
- (NSInteger)numberOfSectionInTableView:(UITableView *)tableView {
    return [regions count];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowInSection:(NSInteger)section {
    Region *region = [regions objectAtIndex:section];
    return [region.timeZoneWrappers count];
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    Region *region = [regions objectAtIndex:section];
    return [region name];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *MyIdentifier = @"MyReuseIdentifier";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier];
    }
    Region *region = [region objectAtIndex:indexPath.section];
    TimeZoneWrapper *timeZoneWrapper = [region.timeZoneWrappers objectAtIndex:indexPath.row];
    cell.textLabel.text = timeZoneErapper.localeName;
    return cell;
}
@end
  
