文本和图像显示正确,但 detailText 没有。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"CooperCell";
UITableViewCell *cell = [tableView
dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = @"title;
cell.detailTextLabel.text = @"subtitle";
UIImage *cellImage = [UIImage imageNamed:@"first.png"];
cell.imageView.image = cellImage;
return cell;
}
我设置了正确的单元格样式,还有什么?