是否可以反转TableView的顺序?我经常寻找解决方案,但没有任何效果。
这种效果就像是在聊天。
普通的表格视图是:

----------
label 1
----------
label 2
----------
label 3
----------
empty
----------
empty
----------

scroll direction
   |
   |
   v

预期结果:
----------
empty
----------
empty
----------
empty
----------
empty
----------
label 3
----------
label 2
----------
label 1
----------

 scroll direction
      ^
      |
      |

谢谢你的帮助

最佳答案

只要滚动到末尾,每次插入单元格时都要这样做。

tableView.scrollToRowAtIndexPath(bottomIndexPath, atScrollPosition: .Bottom,
          animated: true)

关于swift - 从底部swift start tableView(反向tableView),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26148367/

10-14 21:54