如何在单点触摸中调用嵌套视图?
例如 Twitter 应用程序,您可以打开一个个人资料并查看他的推文,然后打开另一个个人资料并一遍又一遍地重复相同的操作,然后您可以多次点击后退按钮打开推文和个人资料等,从相同的路径。
代码示例会对我有很大帮助:)
For example the twitter application you can open one profile and see his tweets then open another profile and go and repeat the same action over and over again, then you can tap on the back button as many times you opened tweets and profiles etc, returning from the same path.
a code example would help me a lot :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找 UINavigationController 的示例。这允许您将新的 UIViewController 推入导航层次结构,并帮助管理在您点击后退按钮时弹出视图控制器(您也可以通过编程方式执行此操作)。
在 MonoTouch.Info 上有很多关于 UINavigationControllers 的文章。我认为这对你来说是最好的起点。
You are looking for examples of a UINavigationController. This allows you to push new UIViewControllers into the navigation hierarchy and helps manage popping the view controllers off when you hit the back button (you can do this programatically also).
There are a bunch of articles on MonoTouch.Info about UINavigationControllers. I think that would be the best starting point for you.