gpt4 book ai didi

iphone - 如何在写入文本之前清除 UITextView 中先前的文本?

转载 作者:行者123 更新时间:2023-12-03 18:42:29 24 4
gpt4 key购买 nike

我想在写入新文本之前清除 UITextView 上以前写入的文本。我确实喜欢这个。

textView.text = @"";
textView.text = @"something";

但是,之前的文本并未被清除。它与当前文本重叠。Textview 不可编辑。

最佳答案

您需要实现 UITextViewDelegate 和方法 textViewDidBeginEditing。以下代码在开始编辑时将 textView 的文本设置为 @""(无内容)。

- (void) textViewDidBeginEditing:(UITextView *) textView {
[textView setText:@""];
}

关于iphone - 如何在写入文本之前清除 UITextView 中先前的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7372484/

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