Guest User

Untitled

a guest
Apr 26th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. - (void)scrollEventListToBottomAnimated:(BOOL)animated
  2. {
  3.  
  4.  
  5.  
  6. CGFloat contentHeight = self.tableview.contentSize.height;
  7. CGFloat viewHeight = self.tableview.bounds.size.height;
  8. CGFloat scrollY = viewHeight > contentHeight ? 0 : contentHeight - viewHeight + 5.0;
  9. CGPoint scrollPos = CGPointMake(0, scrollY);
  10.  
  11. if (animated) {
  12. [UIView animateWithDuration:0.2 animations:^{
  13. self.tableview.contentOffset = scrollPos;
  14. }];
  15. }
  16. else {
  17. self.tableview.contentOffset = scrollPos;
  18. }
  19. }
Add Comment
Please, Sign In to add comment