Guest User

Untitled

a guest
Nov 15th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. scrollToBottom () {
  2. let listView = this.$refs.messagesscroll
  3.  
  4. setTimeout(() => {
  5. if (listView &&
  6. listView.nativeView &&
  7. listView.nativeView.ios) {
  8. listView.nativeView.ios.scrollToRowAtIndexPathAtScrollPositionAnimated(NSIndexPath.indexPathForItemInSection(listView.nativeView.items.length - 1, 0),
  9. UITableViewScrollPosition.Bottom,
  10. true)
  11. }
  12. }, 10)
  13. },
Add Comment
Please, Sign In to add comment