1

在 iPad 和 iPhone 上使用 iOS 8.1.2。我有使用 initWithCoder: 创建的 UICollectionViewCells:来自 xib 并显示在 UICollectionView 中

[_collectionView registerNib:[UINib nibWithNibName:@"HomeFeedCell" bundle:nil] forCellWithReuseIdentifier:CELL_IDENTIFIER];

模板 xib 单元格包含一个带有默认属性文本的 UILabel。单元格也设置为使用自动布局约束。

当单元格被实例化并使用其数据更新时,我调用以下方法来更新属性文本:

- (void)setLabelsForData:(NSDictionary*)dict_data {

    NSMutableAttributedString* attributedText_date = [[NSMutableAttributedString alloc] initWithString:[self dateStringForTimestamp:[dict_data objectForKey:@"ts"]]];
    NSMutableAttributedString* attributedText_time = [[NSMutableAttributedString alloc] initWithString:[self timeStringForTimestamp:[dict_data objectForKey:@"ts"]]];

    UIFont* font_date = [UIFont fontWithName:@"Helvetica-Bold" size:12.0];
    UIFont* font_time = [UIFont fontWithName:@"Helvetica" size:12.0];

    [attributedText_date addAttribute:NSFontAttributeName value:font_date range:NSMakeRange(0, attributedText_date.length)];
    [attributedText_time addAttribute:NSFontAttributeName value:font_time range:NSMakeRange(0, attributedText_time.length)];

    dateLabel.attributedText = attributedText_date;
    timeLabel.attributedText = attributedText_time;

}

但是,当 UICollectionView 以模态方式推送时,最初显示视图中的单元格并且每个单元格都以其原始 xib 默认形式显示其 UILabel 的属性文本大约 1 秒钟,然后最终使用正确的数据和格式进行更新。一旦 UICollectionView 已经显示,虽然 UILables 在滚动这些单元格和任何新单元格时没有这个问题。仅最初在 UICollectionView 出现时可见。

我努力了:

[cell setNeedsDisplay];
[cell setNeedsLayout];
[collectionView invalidateLayout];

在方法结束时。我什至将整个方法放在主线程上,希望这是一个线程问题,但没有运气。

什么可能导致 UILabel 更新缓慢?

4

1 回答 1

3

它有点晚了,但似乎我有同样的问题,对我来说最简单的解决方案是更新UILabelin
- (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath
(此方法在 IOS 8 及更高版本中可用)。
我也遇到同样的问题UITableView

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;
于 2015-12-24T16:27:00.133 回答