如何制作基于导航的应用程序?
是的,我知道,你们大多数人都认为我是个白痴,但(开玩笑)我不是。我一直在到处寻找有关如何完全制作基于导航的 iPhone 应用程序的信息,但我发现的只是如何设置表格视图或导航控制器。我还没有找到任何关于如何创建数据模型的信息(数组和字典中的一些简单的东西,SQLite 和 CoreData 有点超出了我的范围)或导航它。有谁知道任何教程或类似的东西吗?谢谢。
Yes, I know, most of you are thinking I'm an idiot, butt (kidding) I'm not. I've been searching everywhere for something on how to fully make a navigation-based iphone app, but all I've found is how to set up table views or navigation controllers. I haven't found anything on how to create a data model (something simple from arrays and dictionaries, SQLite and CoreData are a bit out of my scope) or navigate it. Does anyone know of any tutorials or anything like that? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找的关键词是“向下钻取”模式。
Apple 有一个带有基本数据控制器的向下钻取应用程序的很好的示例(带有完整的示例应用程序):
http://developer.apple.com/iphone/library/samplecode/SimpleDrillDown/Introduction/Intro.html
The key phrase you're looking for is a 'drill down' pattern.
Apple has a great example (with full sample application) of a drill-down application with a basic data controller:
http://developer.apple.com/iphone/library/samplecode/SimpleDrillDown/Introduction/Intro.html
斯坦福 iPhone 开发课程提供了有关如何设置基于导航的应用程序的良好信息。具体来说,讲座 7 - 9 涉及您感兴趣的主题。您可以在 iTunes U 上找到讲座。课程作业和讲义也可以在 课程网站。
The Stanford iPhone Development Course provides good information on how to set-up a navigation based app. Specifically, lectures 7 - 9 deal with the topics you were interested in. You can find the lectures on iTunes U. The course assignments and handouts are also available on the course website.