当用户向右或向左滑动但仍保留特定内容时,我正在尝试将某些内容加载到 View Controller 。比如图片演示:
如您所见,当用户向右滑动时, View Controller 的上 1/3(即蓝色矩形背景)保持不变。但是,在此之下,第二页的背景、按钮等会发生变化。
是否可以使用页面 View Controller 来完成此操作,例如 here 所演示的? ?这还能如何实现?
Best Answer-推荐答案 strong>
当然,UIPageViewController 是最容易实现的。 There is a great tutorial over at AppCoda .
或者,您可以只在底部使用容器 View ,然后使用 UIViewController 和 UIScrollView 并打开分页和 UIPageControl 提供视觉指示。
您确实需要了解 View Controller 、 View 和容器。 Apple's View Controller Programming Guide是学习的第一站。
关于ios - 加载 Viewcontroller 的新部分,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/21924159/
|