NSStrikethroughStyleAttributeName,如何在iOS 10.3中删除字符串?

NSStrikethroughStyleAttributeName,如何在iOS 10.3中删除字符串?,第1张

概述我在iOS 10.3发布之前使用过这行代码,并且工作正常. NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@\n%@",strMRP,strOffer]];[attributeString a 我在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日

Open Radar link:http://www.openradar.appspot.com/31034683

雷达状态是当前打开状态

你可以看到备用样本也是here可能有用.

总结

以上是内存溢出为你收集整理的NSStrikethroughStyleAttributeName,如何在iOS 10.3中删除字符串?全部内容,希望文章能够帮你解决NSStrikethroughStyleAttributeName,如何在iOS 10.3中删除字符串?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1209264.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存