美文网首页
UILabel: the use of CGColor for

UILabel: the use of CGColor for

作者: 述说职场 | 来源:发表于2019-05-14 09:40 被阅读0次

    'NSInternalInconsistencyException', reason: 'UILabel: the use of CGColor for color properties or inside attributed strings is not supported.'

    这个错误咋回事呢?

        [rstring addAttributes:@{NSForegroundColorAttributeName:[UIFont systemFontOfSize:10.0 weight:UIFontWeightRegular],} range:NSMakeRange(string.length-1, 1)];
    
    

    NSForegroundColorAttributeName 对应的值写成了字体 [UIFont systemFontOfSize:10.0 weight:UIFontWeightRegular]

    正确代码

        [rstring addAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:10.0 weight:UIFontWeightRegular],} range:NSMakeRange(string.length-1, 1)];
    
    

    实属低级错误啊

    相关文章

      网友评论

          本文标题:UILabel: the use of CGColor for

          本文链接:https://www.haomeiwen.com/subject/pmyjaqtx.html