UILabel: the use of CGColor for

2019-05-14  本文已影响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)];

实属低级错误啊

上一篇下一篇

猜你喜欢

热点阅读