我有一个表格视图,其中单元格的标签带有一些属性文本。正在从cellForRowAtIndexPath
正确设置文本。正确设置了文本的颜色,但在单元格出列之前,不会显示粗体属性。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
MyCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellIdentifier];
Model *model = [self.fetchedResultsController objectAtIndexPath:indexPath];
cell.tag = indexPath.row;
[cell updateContentWithModel:model atIndexPath:indexPath];
return cell;
}
- (void)updateContentWithModel:(Model *)model atIndexPath:(NSIndexPath *)indexPath
{
self.model = model;
[self setTextFromModel];
[self setImageFromModelAtIndexPath:indexPath];
}
- (void) setTextFromModel
{
self.title.text = self.model.header;
self.status.attributedText = [self boldString:self.model.status fontSize:self.status.font.pointSize color:[UIColor redColor]];
}
+(NSMutableAttributedString *)boldString:(NSString *)stringToBold fontSize:(CGFloat)fontSize color:(UIColor *)color
{
NSMutableAttributedString *boldString = [[NSMutableAttributedString alloc] initWithString:stringToBold];
[boldString setAttributes:@{NSForegroundColorAttributeName: color,
NSFontAttributeName:[UIFont boldSystemFontOfSize:fontSize]} range:NSMakeRange(0, boldString.length)];
return boldString;
}
以前有没有人经历过这样的事情?
答案 0 :(得分:6)
由于UIAppearance我有同样的问题。在设置UILabel属性文本之前,将font \ color设置为nil。
答案 1 :(得分:0)
我有类似的问题。我试图在自定义UITableViewCell中的UILabel上设置属性文本(特别是字体颜色),即使我在tableView:willDisplayCell:forRowAtIndexPath:
中进行了更改,它也只能部分反映更改(我相信推荐这样做的地方)更新)。
原来,我需要在主线程上设置属性:
dispatch_async(dispatch_get_main_queue(), ^{
[label setAttributedText:text];
});
虽然我已经知道所有UI更新都将在主线程上完成,但是我很惊讶地发现willDisplayCell
尚未从主线程调用,至少在这种情况下没有。
答案 2 :(得分:0)
对我来说,问题在于我正在使用UILabel的自定义子类,该子类使用UIAppearance来显示颜色。当我切换为使用常规UILabel时,此问题已得到解决,但现在我不得不自己处理字体颜色,而不是使用UIAppearance