gpt4 book ai didi

iphone - ( objective-c ) TextView "Clear When editing starts"

转载 作者:太空狗 更新时间:2023-10-30 03:47:54 25 4
gpt4 key购买 nike

是否可以在 TextView 开始编辑时添加清除?此选项可用于文本字段,但我找不到用于 TextView 的任何内容。

谢谢!

最佳答案

实现UITextViewDelegate调用 textViewDidBeginEditing: 的方法,并在其中将 text 属性设置为一个空的 NSString 对象:

- (void) textViewDidBeginEditing:(UITextView *) textView {
[textView setText:@""];
//other awesome stuff here...
}

关于iphone - ( objective-c ) TextView "Clear When editing starts",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4118669/

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