Guest User

Untitled

a guest
Jul 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. [tableView beginUpdates];
  2.  
  3. [tableView insertSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationNone];
  4.  
  5. [tableView endUpdates];
  6.  
  7. NSUInteger iContentOffset = 200; //height of inserted rows
  8.  
  9. [tableView setContentOffset:CGPointMake(0, iContentOffset)];
  10.  
  11. [tableView reloadData];
  12.  
  13. NSUInteger iContentOffset = 200; //height of inserted rows
  14.  
  15. [tableView setContentOffset:CGPointMake(0, iContentOffset)];
Add Comment
Please, Sign In to add comment