作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我在 iOS 10.3 发布之前就使用了这行代码,并且运行良好。
NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@\n%@",strMRP,strOffer]];
[attributeString addAttribute:NSFontAttributeName value:[UIFont boldSystemFontOfSize:12] range:NSMakeRange(0, strMRP.length)];
[attributeString addAttribute:NSFontAttributeName value:[UIFont boldSystemFontOfSize:15] range:NSMakeRange(strMRP.length, strOffer.length+1)];
[attributeString addAttribute:NSStrikethroughStyleAttributeName
value:[NSNumber numberWithInteger: NSUnderlineStyleDouble]
range:NSMakeRange(0,strMRP.length)];
但是现在它停止工作了,有没有其他方法可以进行删除?
最佳答案
这是 iOS 10.3 中的错误 ,NSStrikethroughStyleAttributeName
(任何 NSUnderlineStyle
案例)不再有效在 iOS SDK 10.3 上。
if anyone found the updated answer related to this , please inform here, I will update my answer.
产品版本:10.3
创建时间:2017 年 3 月 14 日
发起时间:2017 年 3 月 14 日
打开雷达链接:http://www.openradar.appspot.com/31034683
雷达状态当前为打开状态
您还可以看到备用示例 here可能有用。
关于ios - NSStrikethroughStyleAttributeName , 如何在 iOS 10.3 中删除字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43070335/
我是一名优秀的程序员,十分优秀!