本文介绍了删除文本的最佳方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
到目前为止,iPhone上的删除文本的最佳解决方案是什么?
What is the best solution so far for a strike out text on the iPhone?
我听说过多种解决方案:
I heard of multiple solutions:
- 有三件事的东西
- 图像作为子视图
-
UIWebView
以及带有NSAttributedString
的东西,但我找不到一个有效的例子。
- Something with three20
- Image as a subview
UIWebView
And something with aNSAttributedString
, but I don't find a working example for that.
推荐答案
在iOS 6中,我们可以使用NSMutableAttributedString来使用更多不同的样式。
In iOS 6 we can use "NSMutableAttributedString" for use more different styles.
NSString* cutText = @"This Line is strike out.";
NSMutableAttributedString *titleString = [[NSMutableAttributedString alloc] initWithString:cutText];
// making text property to strike text- NSStrikethroughStyleAttributeName
[titleString addAttribute:NSStrikethroughStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:NSMakeRange(0, [titleString length])];
// using text on label
[myTextLabel setAttributedText:titleString];
这篇关于删除文本的最佳方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!