FPPopOver に詳しい方: https://github.com/50pixels/FPPopover
セルにサブタイトルを表示できますか? 私はUITableViewController
ペン先に私のものを付けなければなりませんでした。
ストーリーボードでは、サブタイトルを表示するようにセルを設定していますが、iPhone に popOver が表示されると、表示されるだけ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";
}
画像は次のとおりです。
更新 ラベルを使用してサブタイトルを表示した後、セルをスクロールしてビューに戻すと、次のようになります。