0

我正在使用 IOS 5.0,并且我正在开发简单的应用程序,因为我正在使用 UITextFiled 当用户从键盘单击返回键时如何导航到其他视图。如果有人知道帮助我。提前致谢

4

1 回答 1

1
- (void)someAction:(id)sender
{
  // do something (like pushing a new view) 
  //when the user hits <enter> in the text field
}

然后使用这些行...

[myTextField setTarget:self];
[myTextField setAction:@selector(someAction:)];
于 2012-06-29T05:51:13.003 回答