gpt4 book ai didi

iphone - iOS 应用程序 "next"键不会转到下一个文本字段

转载 作者:IT老高 更新时间:2023-10-28 11:40:49 25 4
gpt4 key购买 nike

我有一个带有用户名和密码文本框的简单场景(在 IB 中使用 Storyboard )。当您在密码文本字段中时,我已将键盘设置为关闭,但无法让下一个(返回)按钮在用户名上工作以将焦点(或第一响应者)切换到密码文本框。

我在密码文本字段中关闭键盘,如下所示:

- (BOOL)textFieldShouldReturn:(UITextField *)theTextField {
if (theTextField == self.textPassword) {
[theTextField resignFirstResponder];
}
return YES;
}

我知道它与此类似,但无法确定。

最佳答案

默认情况下,返回键在文本字段中没有任何特殊作用。您需要明确更改第一响应者:

- (BOOL)textFieldShouldReturn:(UITextField *)theTextField {
if (theTextField == self.textPassword) {
[theTextField resignFirstResponder];
} else if (theTextField == self.textUsername) {
[self.textPassword becomeFirstResponder];
}
return YES;
}

关于iphone - iOS 应用程序 "next"键不会转到下一个文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9540500/

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