如何为标签添加strikethroughStyle。 UILabel中数字的中间删除行。检查附件图像以供参考。
ios - Swift:label的strikethroughStyle(标签的中间删除行)-LMLPHP

最佳答案

使用attributeString

屏幕截图

ios - Swift:label的strikethroughStyle(标签的中间删除行)-LMLPHP


NSDictionary * attribtues = @{NSStrikethroughStyleAttributeName:@(NSUnderlineStyleSingle),
                              NSStrikethroughColorAttributeName:[UIColor redColor]};
NSAttributedString * attr = [[NSAttributedString alloc] initWithString:@"label" attributes:attribtues];
self.label.attributedText = attr;

10-08 05:51