gpt4 book ai didi

iphone - 当用户点击返回时,如何将下一个文本字段设置为编辑焦点?

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

<分区>

Possible Duplicate:
How to navigate through textfields (Next / Done Buttons)
iOS app “next” key won’t go to the next text field

我的 View 中有两个文本字段,当用户按下返回键时,我希望光标从电子邮件文本字段移动到密码文本字段。如果密码文本字段是焦点,我希望键盘隐藏。这是我目前拥有的,但它不起作用...

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
return YES;
}

- (void)textFieldDidEndEditing:(UITextField *)textField {
if(textField == self.emailTextField) {
[self.passwordTextField becomeFirstResponder];
}

else if (textField == self.passwordTextField) {
[textField resignFirstResponder];
}
}

我错过了什么?非常感谢您的智慧!

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