如何创建类似iPhone中照片应用程序的界面?
如何启动与 iPhone 附带的照片应用程序具有类似界面的应用程序?具体来说,视图中存在带有 UITabBarController
和 UINavigationController
的界面。
How do I start an application which has a similar interface like the Photo application that ships with the iPhone? Specifically an interface with a UITabBarController
and UINavigationController
both present in the view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要同时使用选项卡和导航,您需要创建一个选项卡栏应用程序并将其视图的类从 UIViewController 更改为 NavigationController。看看这个 教程,它应该可以帮助您入门。
To use both tab and navigation together, you create a tab bar application and change the class of its views from UIViewController to NavigationController. Have a look at this tutorial, it should get you started.
我会查看 Three20 开源 iPhone 框架。更具体地说是他们的 TTPhotoViewController。
github - Three20
I would check out the Three20 open-source iPhone framework. More specifically their TTPhotoViewController.
github - Three20