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有人说这是个错误。
答案 0 :(得分:0)
如果使用自定义字体,则在故事板中选择的字体不会显示在应用程序内。您必须将自定义字体文件添加到您的包中并在代码中设置字体。
您可以按照本教程添加自定义字体:http://www.developers-life.com/how-to-include-ttf-fonts-to-ios-app.html