使用嵌套视图重新创建 iPhone Stock 应用程序
我正在尝试创建一个类似于 iPhone 上的雅虎股票应用程序的应用程序,具有分屏界面(表格在顶部,图表在底部)。我正在努力处理视图层次结构。
实现分屏类型应用程序的最简单方法是什么?我基本上想要两个视图嵌套在父视图中。我的问题有点复杂,因为我想要像 uipagecontrol 这样的功能(这是否需要另一个视图控制器,或者只是在初始视图控制器中实现)?
我需要使用IB到什么程度?我更愿意在 Xcode 中完成这一切。提前致谢!
I am trying to create an app similar to the Yahoo Stocks app that comes on the iPhone, with the split-screen interface (table on the top, graph on the bottom). I'm struggling with the view hierarchy.
What is the easiest way to implement a split-screen type of application. I basically want two views nested in a parent view. My problem is a little bit more complex because I want functionality like having a uipagecontrol (does this require another viewcontroller, or is simply implemented in the initial view controller)?
To what degree do I need to use IB? I would prefer to do this all in Xcode. Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有理由不能创建视图并将它们放入您想要的任何其他类型的
UIView
中,特别是UIScrollView
。只需将它们的框架排列在正确的位置即可。There's no reason you can't create the views and put them inside of any other kind of
UIView
you want, particularlyUIScrollView
. Simply arrange their frames to be in the right position.