对于那些熟悉 FPPopOver 的人: https ://github.com/50pixels/FPPopover
单元格可以显示字幕吗?我不得不把我UITableViewController
的附在笔尖上。
在情节提要中,我将单元格设置为显示字幕,但是,当 popOver 出现在 iPhone 上时,只有cell.textLabel.text
可见 -cell.detailTextLabel.text
没有出现。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (cell==nil)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
NSString *entityName= [[managedObject entity]name];
cell.textLabel.text = [NSString stringWithFormat:@"%@ %i", entityName, [indexPath row]];
cell.detailTextLabel.text = @"Subtitle";
}
这是图像:
更新 使用标签显示字幕后,将单元格滚动回视图后,会发生以下情况: