UITextView的字体是零,但我在故事板中设置它

时间:2013-11-04 07:57:00

标签: ios uitableview iboutlet uifont

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

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

字体变为nil,它应该是我在storyboard中设置的值。

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

1 个答案:

答案 0 :(得分:0)

如果使用自定义字体,则在故事板中选择的字体不会显示在应用程序内。您必须将自定义字体文件添加到您的包中并在代码中设置字体。

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