gpt4 book ai didi

iphone - 如何以编程方式选择 UITextField 的文本

转载 作者:太空狗 更新时间:2023-10-30 03:40:17 24 4
gpt4 key购买 nike

我想从开始编辑时选择的 UITextField 中选择所有文本。我尝试了以下代码,但这不起作用。

[txt selectAll:self];

最佳答案

请检查你把它放在哪里...试试把上面的代码放在

       -(void)textFieldDidBeginEditing:(UITextField *)textField
{
[textField selectAll:self];

}

而且 txt 必须是 UITextField。也不要忘记将 txt 的委托(delegate)设置为

        txt.delegate = self;

在声明它的地方并在 .h 中添加 UITextFieldDelegate 为

       @interface ViewController : UIViewController <UITextFieldDelegate>

这肯定有用....它对我有用..

关于iphone - 如何以编程方式选择 UITextField 的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10349943/

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