gpt4 book ai didi

iphone - 删除文本的最佳方法

转载 作者:行者123 更新时间:2023-12-03 19:32:14 26 4
gpt4 key购买 nike

到目前为止,在 iPhone 上删除文本的最佳解决方案是什么?

我听说过多种解决方案:

  • 有 320 的东西
  • 图像作为 subview
  • UIWebView还有一些带有 NSAttributedString 的东西,但我没有找到有效的示例。

最佳答案

在 iOS 6 中,我们可以使用“NSMutableAttributedString”来使用更多不同的样式。

    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];

关于iphone - 删除文本的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4017530/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com