iPhone - 多个页面
我有一个基于视图的应用程序,这里有 3 个不同的页面,我一生都无法将所有页面正确或完全链接在一起。
它只是一个主页,有 2 个按钮链接到第一个页面和发送页面......然后返回主页。
我有一个我正在处理的模型,如果有人可以看看它并告诉我我在这里做错了什么:
files.me.com/bolinger/0i1isa
谢谢伙伴们!
I have a view based app going here with 3 different pages, I can't for the life of me get all the pages linked together correctly or completely.
Its just a home page with 2 buttons linking to the first and send page.... then back to the home page.
I have a mock up of what I am working with if someone could look at it and tell me what I am doing wrong here:
files.me.com/bolinger/0i1isa
thanks mates!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您可以使用 Xcode 为您生成的“基于导航的项目”。 至于示例代码, TableViewSuite 是一个很好的起点。
基本上,
UINavigationController
类负责大部分簿记工作; 您只需在用户点击应用程序中的按钮时推送或弹出视图即可。Sounds like you can probably make do with a "Navigation-based Project" Xcode can generate for you. As for sample code, TableViewSuite is a good place to start.
Basically, the
UINavigationController
class takes care of most of the bookkeeping; you just push or pop views as the user taps the buttons in your app.