删除文本的最佳方法

编程入门 行业动态 更新时间:2024-10-24 04:43:15
本文介绍了删除文本的最佳方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

到目前为止,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 a NSAttributedString, 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];

更多推荐

删除文本的最佳方法

本文发布于:2023-11-01 18:29:55,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1550084.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:文本   方法

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!