その代わりにシステム フォントを試してみましたが、問題なく表示されます。カスタム フォントを追加すると、フォントがまったく表示されません。一体何が起きているのか誰か教えてくれませんか?! バングルリソースにもコピーされていますか?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *cellIdentifier = @"MenuItemCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier];
}
cell.textLabel.text = [self.menuItems objectAtIndex:indexPath.row];
cell.textLabel.textColor = [UIColor whiteColor];
//[UIFont fontWithName:@"DIN-Regular.ttf" size:60];
cell.textLabel.font = [UIFont fontWithName:@"DIN" size:10.0];
return cell;
}
何も表示されません...デフォルトのシステムヘルベチカでさえありませんか?