テーブルビュー セルにサブタイトルを追加しようとしていますが、表示されません。間違いはどこですか?
行は
[[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;
}