单击 iPhone 键盘上的“完成”后如何转到新屏幕?
我是一名新的 iPhone 开发者,所以我非常感谢一些指导。
我已经开始做一些事情......但我不知道从那里该做什么。
- (BOOL) textFieldShouldReturn:(UITextField *)textField {
//hide keyboard
[textField resignFirstResponder];
//after hiding the keyboard, call another method
//which should display a UITableView
return YES;
}
如果我可以提供更多信息,请告诉我。
I'm a new iPhone developer, so I'd really appreciate some guidance.
I've started off with something...but I don't know what to do from there.
- (BOOL) textFieldShouldReturn:(UITextField *)textField {
//hide keyboard
[textField resignFirstResponder];
//after hiding the keyboard, call another method
//which should display a UITableView
return YES;
}
Please let me know if I can provide more information.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看涵盖 ViewController 和导航主题的 Apple 开发人员文档。
这应该可以帮助您开始。
http://developer.apple.com/library/ios/ #featuredarticles/ViewControllerPGforiPhoneOS/Introduction/Introduction.html
Take a look the Apple developer documentation that cover the topics of ViewControllers and navigation.
This should get you started.
http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/Introduction/Introduction.html