0

我已经为这个问题苦苦挣扎了很长时间。也许你可以帮助我。所以我想用简单的 UITableView 以编程方式创建一个基本的 UINavigationController。

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

如果你能帮助我把这件事做好,我会非常高兴。

4

1 回答 1

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];

等等

于 2012-07-04T17:51:47.533 回答