gpt4 book ai didi

ios - 按完成或uitextfield的返回键调用函数

转载 作者:行者123 更新时间:2023-11-28 22:05:51 25 4
gpt4 key购买 nike

我想在按下 uitextfied 的完成键时执行一些任务我试过这种方式

 -(void)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
[self myfuction];
}

但什么也没发生

最佳答案

你设置了 UITextFielddelegate 了吗?比如

myTextFieldObj.delegate = self;

如果是,则在 myfuction 的主体处放置断点并检查它是否有效?

编辑

委托(delegate)方法应该是

- (BOOL)textFieldShouldReturn:(UITextField *)textField

NOT -(void)textFieldShouldReturn:(UITextField *)textField , 返回的是 BOOL 而不是 void 所以你的代码应该是..

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
[self myfuction];
return YES;
}

关于ios - 按完成或uitextfield的返回键调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23991040/

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