UIPageControl 与 UITableView
我想要一个视图(UIViewController)上的页面控件(UIPageControl),每个页面上都有表视图(UITable)。 是否可以?如果是,那么如何?
I want a page control(UIPageControl) on a view (UIViewController) with table view(UITable) on each page.
Is it possible? If YES then HOW?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
CellForRowAtIndexPath
中创建UITableView
,然后创建UIScrollView
,您可以将其添加到UITableView
并附加您的UIPageControl
在UIScrollView
上。Create
UITableView
inCellForRowAtIndexPath
and then create theUIScrollView
which you can add toUITableView
and attach yourUIPageControl
onUIScrollView
.