2

我在表格行单元格标题中有一些文本呈现不佳。我增加了字体大小,以便更好地看到它。此外,字体的质量会随着表格的滚动而变化。

该字体已添加到项目中,并且可以在应用程序的其他地方正常工作。就是这个tableview。

这发生在 iPad 2 上。3GS 设备看起来不错。

有谁知道为什么会发生这种情况?

这是我添加它的代码:

cell.titleLabel.text = [item objectForKey:@"title"];
[cell.titleLabel setFont:[UIFont fontWithName: @"Asap-Bold" size: 15.0f]];

这是一个屏幕截图。

在此处输入图像描述

谢谢你的帮助

4

1 回答 1

3

将您的代码从

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath

有关此 SO question的更多信息/讨论。

于 2013-02-05T00:33:44.083 回答