Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 IOS 5.0,并且我正在开发简单的应用程序,因为我正在使用 UITextFiled 当用户从键盘单击返回键时如何导航到其他视图。如果有人知道帮助我。提前致谢
- (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:)];