Guest User

Untitled

a guest
Nov 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. [self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
  2.  
  3. - (void) insertScannedPeripherals {
  4. NSMutableArray * pArray = [[LeDiscovery sharedInstance] foundPeripherals];
  5.  
  6. for (int i=0; i<pArray.count; i++){
  7.  
  8. [mainVCfoundPeripherals insertObject:[pArray objectAtIndex:i] atIndex:0];
  9. NSIndexPath * indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
  10.  
  11. NSLog(@"DEBUG: Element at index %i is %@", i, pArray[i]);
  12.  
  13. [self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
  14.  
  15. }
Add Comment
Please, Sign In to add comment