gpt4 book ai didi

iphone - 如何用选定范围替换 UITextView 中的文本?

转载 作者:可可西里 更新时间:2023-11-01 04:11:44 25 4
gpt4 key购买 nike

我想在选定范围内替换 UITextView 文本中的文本。这是我的问题。在这里我提到我做了什么?我想做什么?我有一个 UITextView 并在 textview 中输入了以下文本。

在这里提问,我已经在textview中保存了文本的范围。文本范围是 {17, 0}。我在 -(void) textViewDidChange:(UITextView *)textView 委托(delegate)中使用 NSRange。

现在我想用 answer 替换文本 question 并且我想用 them 替换文本 here 。 UITextView.text 看起来像这样,Ask answer them` 替换文本后。

如何用选定的范围替换文本?你能帮我么?提前致谢。

最佳答案

自 iOS 7 起,textView 中有继承自 NSMutableAttributedString 的 textStorage,因此您可以使用这些方法:

objective-C

[self.textView.textStorage replaceCharactersInRange:withString:];

[self.textView.textStorage replaceCharactersInRange:withAttributedString:];

swift

textView.textStorage.replaceCharacters(in: range, with: string)

关于iphone - 如何用选定范围替换 UITextView 中的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9096710/

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