gpt4 book ai didi

iOS6 将光标放在特定的文本字段中

转载 作者:行者123 更新时间:2023-11-28 19:09:57 26 4
gpt4 key购买 nike

在用户将数据添加到数据库后,我清除了三个文本输入字段:

 self.textMonth.text  = @"";
self.textTemp.text = @"";
self.textCloud.text = @"";

随后如何将光标置于这些字段中的任何一个?

我尝试了其他地方提供的许多解决方案,但似乎都没有用。非常感谢。嗯

最佳答案

只需使用 becomeFirstResponder 让您的文本字段成为第一响应者,例如......

 [self.textMonth becomeFirstResponder];

要随后更改文本字段,请使用 textFieldShouldReturn

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
if([self.textMonth isFirstReponder])
{
[self.textTemp becomeFirstResponder];
}
else if([self.textTemp isFirstReponder])
{
[self. textCloud becomeFirstResponder];
}
else if([self.textCloud isFirstReponder])
{
[self.textMonth becomeFirstResponder];
}
return YES;
}

希望能帮到你解决问题

关于iOS6 将光标放在特定的文本字段中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16536782/

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