我正在尝试在我的subtitle
中将tableView
显示为一些文字。
以下是tableView
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:SimpleTableIdentifier] autorelease]; } //did the subtitle style
NSUInteger row = [indexPath row];
cell.textLabel.text = [listData objectAtIndex:row];
return cell;
cell.detailTextLabel.text = @"Hello there"; //This is not displaying...
}
}
当我跑步时,我没有看到字幕文字的原因吗?
答案 0 :(得分:19)
return cell;
cell.detailTextLabel.text = @"Hello there"; //This is not displaying...
在detailTextLabel
单元格之后设置return
。当您return
离开方法的单元格时。因此,最后一行代码不会运行。