在 iOS 中切换视图的最佳方式
你如何从一种观点转向另一种观点?是
[window addSubview:myView];
唯一的选择还是有更好的方法来做到这一点?
How do you go from one view to another? Is
[window addSubview:myView];
The only option or is there a better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先看一下 Apple 的 iOS 视图控制器编程指南 。您可能会从听起来基于导航的界面开始。你说的是完全正确的,但你想利用动画等功能,如果你使用苹果的视图控制器类,这些功能是“免费”的。
First look at Apple's View Controller Programming Guide for iOS. You might start with a navigation-based interface it sounds. What you say is strictly true, but you want to take advantage of features like animation, which come for 'free' if you use Apple's view controller classes.