启用分页时 UITableView 页面大小
我面临着一个简单但乏味的问题。 我想做的是像 UIScrollView 一样创建一个 UITableView 来分页,但是启用分页对我没有太大帮助,因为我无法设置页面大小,因此 tableview 恰好滚动其高度,因此它显示第 1 行... 10 或 11...20 等等。 相反,我想要的是,当我滚动(因此分页)时,没有单元格会在视图上方或下方被剪切,而不会显示某种固定范围的单元格。
多谢
I'm facing with a simple but tedious problem.
What I'm trying to do is make an UITableView to page like an UIScrollView but enabling paging doesn't help me so much because I can't set page size so the tableview scrolls exactly of its height so it shows rows 1...10 or 11...20 and so on.
What I'd like instead is that no cell remains clipped above or under the view when I scroll (thus paging) without having a sort of fixed range of shown cells.
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
更简单,更高效:)
More simple and more efficient :)
简单但高效:
Simple but efficient:
从 k06a 的答案开始,我对其进行了一些改进,使其工作方式更像真正的分页 UITableView。对于全屏表格行,行为差异非常明显。即使是向任一方向轻轻一抖,也应该将表格滚动到下一页:我通过首先检查速度来做到这一点。
请注意,在
viewDidLoad:
中进行额外设置使其更接近真实情况,但又不完全一样。
我一直在使用此处显示的代码设置更快的减速度,但我无法正确设置。
Starting with k06a's answer, I've refined it a bit so it works more like the real paginated UITableView. The differences in behaviour are quite noticeable with full screen table rows. Even a mini-flick in either direction should scroll the table to the next page: I do this by checking velocity first.
Note that additionally setting
in
viewDidLoad:
makes it closer to the real thing, but not quite.I've been fiddling with setting even faster deceleration rates using the code shown here but I couldn't get it right.
这就像真正的分页一样:
并在
-viewDidLoad
中进行此操作:This works like real paging:
and make this in
-viewDidLoad
:而在斯威夫特...
And in Swift...