Advertisement
priore

How to never block the interface with NSOperation

Mar 13th, 2014
1,161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. self.queue = [NSOperationQueue new];
  2.  
  3. NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(loadData) object:nil];
  4.  
  5. [self.queue addOperation:operation];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement