如何清除 NSMutableAttributedString 的内容?
我有一个 ivar,它在对象的 init 中进行分配:
attString = [[NSMutableAttributedString alloc] init];
在循环中,我想清除 attString 的内容并重新使用它。我该怎么做?
谢谢!
I have an ivar which is alloc-inited in the init of an object:
attString = [[NSMutableAttributedString alloc] init];
On a loop, I want to clear the contents of attString and re-use it. How do I do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
肯尼的方法可能更快。
Kenny's method probably quicker.
我没有找到@kennytm上面提到的方法,但我这样做了:
Available from mac10.0 and ios3.2 or later。祝新搜索者好运!
I didn't find out the methods that @kennytm mentioned above, but I did it with this:
Available from mac10.0 and ios3.2 or later. Good luck for new searchers!