使用UITableView以编程方式创建UINavigationController

时间:2012-07-04 17:43:28

标签: uitableview uinavigationcontroller

我一直在努力解决这个问题。也许你可以帮助我。所以我想用编程方式创建一个带有简单UITableView的基本UINavigationController。

例如,UITableView将包含一些有关“颜色”的信息。项目列表将类似于:“黄色”,“橙色”,“绿色”,“紫色”。

如果你能帮助我做到这一点,我真的很高兴。

1 个答案:

答案 0 :(得分:0)

试试这个:

@interface MyViewController: UITableViewController {
    NSArray *data;
}

@end

@implementation MyViewController

- (id)init
{
    if ((self = [super init]))
    {
        data = [[NSArray alloc] initWithObjects:@"Red", @"Green", @"Blue", nil];
    }
    return self;
}

- (void)dealloc
{
    [data release];
    [super dealloc];
}

- (int)tableView:(UITableView *)tv numberOfRowsInSection:(int)s
{
    return [data count];
}

- (UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)ip
{
    UITableViewCell *cell = [tv dequeueReusableCellWithIdentifier:@"CELLID"];
    if (!cell) cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault identifier:@"CELLID"] autorelease];
    cell.textLabel.text = [data objectAtIndex:ip.row];
    return cell;
}


@end

使用它像:

MyViewController *ctrl = [[MyViewController alloc] init];
UINavigationController *navCtrl = [[UINavigationController alloc] initWithRootViewController:ctrl];
[ctrl release];