当故事板标签具有自定义字体时,dequeueReusableCellWithIdentifier需要4秒才能运行

时间:2015-03-03 16:38:20

标签: ios fonts storyboard

我有一个应用程序,它通过navigationController的pushViewController转换了一系列视图。最后一步是推送包含tableView和tableViewCell原型的视图。这种转换需要4秒才能完成,此时UI会在视觉推动之前挂起。

我第一次将其缩小到对 dequeueReusableCellWithIdentifier 的调用。然后我将其缩小为一个或多个包含项目中加载的自定义字体的标签。

我能够通过将storyboard字体保留为System来修复它,但在代码中动态分配自定义字体。

我的问题是为什么在故事板中设置字体使得速度变慢,并且可以做些什么来解决这个问题?我更喜欢将它设置在故事板中,就像其他属性一样。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *MyIdentifier = @"tableViewCell";

    // The next line takes 4 seconds to run 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
    if (cell == nil){
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier];
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }

    NSDictionary *data = _data[indexPath.section][indexPath.row];

    UILabel *label1 = (UILabel*)[cell viewWithTag:1];
    UILabel *label2 = (UILabel*)[cell viewWithTag:2];
    UILabel *label3 = (UILabel*)[cell viewWithTag:3];

    // Using this instead of storyboard defined fonts loads quickly
    // label1.font = [UIFont fontWithName:@"Oxygen-Bold" size:18];
    // label2.font = [UIFont fontWithName:@"OpenSans-Semibold" size:13];
    // label3.font = [UIFont fontWithName:@"OpenSans-Semibold" size:13];

    label1.text = data[@"name"];
    label2.text = data[@"subtitle"];
    label3.text = data[@"slogan"];

    return cell;
}

enter image description here

1 个答案:

答案 0 :(得分:2)

我花了一天的时间试图找出为什么我的 dequeueReusableCellWithIdentifier 花了1秒钟在iOS 8上添加新的自定义单元格(在iOS 7上 - 效果很好)。

通过从故事板中删除自定义字体来修复。非常感谢您的提示。

这是苹果公司的一个错误。