Guest User

Untitled

a guest
Jul 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. -(void) setNeedsReload{
  2. //[self reload];
  3.  
  4. NSNotification *notification;
  5.  
  6. notification = [NSNotification notificationWithName:@"reloadNotification"
  7. object:self];
  8.  
  9. [[NSNotificationQueue defaultQueue] enqueueNotification:notification
  10. postingStyle:NSPostNow
  11. coalesceMask:(NSNotificationCoalescingOnName|NSNotificationCoalescingOnSender)
  12. forModes:nil];
  13.  
  14. }
  15.  
  16. -(void) reload{
  17.  
  18. //Call the data source delegate
  19.  
  20. }
Add Comment
Please, Sign In to add comment