我想添加一個字幕到我的tableview單元格,但它們不顯示。 錯誤在哪裏?IOS7上的Tableview字幕
是行 [[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;
}
這看起來正確註冊您的細胞類我。你使用Storyboard/Xib文件嗎?確保你把細胞原型放在那裏。 –
你是說這段代碼只會顯示主標題,而不是每行的標題?這是全部代碼還是你使用原型單元? – rmaddy