它是基于窗口还是基于视图的应用程序?
我需要制作一个 iPhone 应用程序,例如 App Store 中的 USA Free。 谁能告诉我这是什么类型的应用程序(基于窗口或视图)以及如何在更改视图时产生水平滑动效果? 谢谢你!
I need to make an iphone app like USA Free that's in App Store.
Can anybody, please, tell me what kind of app is this (window or view based) and how it is possible to make horizontal slide effect when changing views?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于过渡,请查看
所有应用程序都包含一个(或多个)窗口和视图。您可能想从创建应用程序的基础知识开始。 http://developer.apple.com/library/ios/referencelibrary/GettingStarted/Creating_an_iPhone_App/_index.html#//apple_ref/doc/uid/TP40007595
For transitions, take a look at http://developer.apple.com/library/ios/documentation/UIKit/Reference/UIView_Class/UIView/UIView.html#//apple_ref/occ/clm/UIView/transitionWithView:duration:options:animations:completion:
All apps contain one (or more) windows and views. You might want to start with the basic of creating an app. http://developer.apple.com/library/ios/referencelibrary/GettingStarted/Creating_an_iPhone_App/_index.html#//apple_ref/doc/uid/TP40007595
基于视图仅意味着项目附带了已设置的默认类。您可以在该类中放置任何您想要的内容。基于窗口只是如果您想自己创建所有类。差别不大,所以只要您知道如何创建所需的水平滑动效果,选择哪一个并不重要。
View based just means the project comes with a default class already setup. You can put anything you want in that class. Window based is just if you want to create all the classes your self. Theres not much difference, so it doesn't really matter which you choose as long a you know how to create the horizontal slide effect your going for.