I have created an NSOperation subclass that performs a long task. Created an instance of that subclass and added to an NSOperationQueue. The subclass is processing a long task and result a series of NSArray that I need to pass back to caller. Though I am using KVO method to notify the main thread that there is something [NSArray] ready for main thread.
What is the proper way to share information like NSArray between NSOperation and its caller?
Any idea?
Thanks
Arnieterm
What is the proper way to share information like NSArray between NSOperation and its caller?
Any idea?
Thanks
Arnieterm