4

SYBListWeiBoCellView 是一个自定义单元格,它有一个 UITextView。我在情节提要中设置了 UITextview 的字体,并在 SYBListWeiBoCellView 中创建了一个名为 repoText 的 IBOutlet。当我通过 SYBListWeiBoCellView

SYBListWeiBoCellView *cell = [tableView dequeueReusableCellWithIdentifier:@"weiboCell"];
UIFont *font = cell.repoText.font;

字体变成零,它应该是我在情节提要中设置的值。

这里https://stackoverflow.com/a/19115950/1130175有人说这是一个错误。

4

1 回答 1

0

如果您使用自定义字体,您在情节提要中选择的字体将不会出现在应用程序中。您必须将自定义字体文件添加到您的包中并在代码中设置字体。

您可以按照本教程添加自定义字体: http: //www.developers-life.com/how-to-include-ttf-fonts-to-ios-app.html

于 2013-11-04T09:29:52.530 回答