我尝试仅在代码中创建自定义 UITableViewController(没有情节提要)。数据已经传入,通过 tableview:tableview:cellForRowAtIndexPath 函数验证。但它不能显示它们。请帮忙。谢谢。
- (id)initWithFrame:(CGRect)frame Tags:(NSMutableArray *) tags
{
self = [super initWithStyle:UITableViewStylePlain];
if (self) {
// Custom initialization
self.view.frame = frame;
self.tags = tags;
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"Cell"];
}
return self;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.tags.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
NSString *text = (NSString*)[self.tags objectAtIndex:indexPath.row];
cell.textLabel.text = text;
return cell;
}