将 UIPageControll 添加到 UITableView Cell
我想将 UIPageControl 添加到单个 tableView 单元格。应该可以滑动单元格并使用分页 Controll 指示位置。
分页控件中的视图数量在每个单元格中都是不同的。如果我滚动表格视图,实际视图保持选中状态,这也应该是可能的。
这是一个屏幕截图,可以告诉您超过数千个字: http://www.freeimagehosting.net/uploads/889f10a5d9.png
有人得到了一个想法?
i want to add a UIPageControl to a single tableView Cell. It should be possible to swipe the cell and indicate the position with a paged Controll.
The amound of Views within the paged controll is different in every cell. Is should also be possible if i scroll the table view that the actual view stays selected.
here is a screenshot which will tell you more than thousands words:
http://www.freeimagehosting.net/uploads/889f10a5d9.png
has someone got an idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对我来说,这看起来是一个非常复杂的设计……但是哦,好吧。
请记住,表格单元格视图只是 UIView 的子类。它的使用方式与其他视图略有不同,例如。 。
您应该能够添加滚动视图作为表格单元格的 contentView 的子视图 按照 Apple 的滚动视图示例代码设置可分页滚动视图。
Looks like an awfully over-complicated design to me... but oh well.
Just remember that a table cell view is just a subclass of UIView. It's just used slightly differently to other view, eg. dequeuing resuable cells etc.
You should be able to add a scroll view as a subview of the table cell's contentView. Follow Apple's scroll view sample code to set up a pageable scroll view.