Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. [sTableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:sender.tag inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
  2.  
  3. [table_readText scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES ];
  4.  
  5. [self.tableView setContentOffset:CGPointZero animated:YES];
  6.  
  7. CGFloat height = self.tableView.contentSize.height - self.tableView.bounds.size.height;
  8. [self.tableView setContentOffset:CGPointMake(0, height) animated:YES];
  9.  
  10. scrollToRowAtIndexPath:atScrollPosition:animated:
  11.  
  12. - (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement