相关疑难解决方法(0)

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

我在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)];
Run Code Online (Sandbox Code Playgroud)

但是现在它停止了工作,有没有其他方法来进行击球?

xcode objective-c nsmutablestring ios

7
推荐指数
2
解决办法
2654
查看次数

标签 统计

ios ×1

nsmutablestring ×1

objective-c ×1

xcode ×1