我正在尝试为我的表格视图单元格添加一个字幕,但它们没有显示出来。错误在哪里?
该行是否是
[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle]
最新的,也适用于 iOS 7?
此致
坦率
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (!cell)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = @"TestA";
cell.detailTextLabel.text = @"TestB";
return cell;
}