Guest User

Untitled

a guest
Jun 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. - (void) handleTimer: (NSTimer *) timer {
  2. if(!self.editing){
  3. reportings = [Reporting getReportings:@"0"];
  4.  
  5. NSMutableArray *indexPaths = [[NSMutableArray alloc] init];
  6. for(int i=0; i < reportings.count; i++){
  7.  
  8. [indexPaths addObject:[NSIndexPath indexPathForRow:i inSection:0]];
  9. }
  10. [tableView beginUpdates];
  11. [tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationTop];
  12. [tableView endUpdates];
  13. }
  14. }
Add Comment
Please, Sign In to add comment