NSOperation on the iPhone

前端 未结 7 614
攒了一身酷
攒了一身酷 2020-11-28 19:54

I\'ve been looking for some concrete scenarios for when NSOperation on the iPhone is an ideal tool to use in an application. To my understanding, this is a wrap

相关标签:
7条回答
  • 2020-11-28 20:05

    In a word: NSOperationQueue

    NSOperationQueue is thread safe (you can add operations to it from different threads without the need for locks) and enables you to chain NSOp objects together.

    My Flickr iPhone app, Reflections, uses NSOperation and NSOperationQueue extensively to manage downloading images and XML.

    Caveat: Make sure you read, re-read, and understand what the docs mean when they talk about 'concurrency'.

    0 讨论(0)
  • 2020-11-28 20:11

    You should also check out this URL: http://developer.apple.com/cocoa/managingconcurrency.html

    All these above answers are great, but make sure you read the article above and make liberal use of this line in your code:

    if ( self.isCancelled ) return;
    

    That line wasn't used in the samples provided by Coca is my Girlfriend, and it wasn't until I got crash logs in from the field that I realized this was an issue/concept.

    0 讨论(0)
  • 2020-11-28 20:16

    Here is just a very simple implementation but take time to read the tutorials to fully understand everything:

    NSOperationQueue *queue = [NSOperationQueue new];
    
    NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
        selector:@selector(methodToCall)
        object:objectToPassToMethod];
    
    [queue addOperation:operation];
    
    0 讨论(0)
  • 2020-11-28 20:17

    A sample that you can try using Swift

    let operation : NSOperation = NSOperation()
    operation.completionBlock = {
    println("Completed")
    }
    
    let operationQueue = NSOperationQueue.mainQueue()
    operationQueue.addOperation(operation)
    
    0 讨论(0)
  • 2020-11-28 20:25

    The way I use it in my iPhone apps is to basically create an NSOperationQueue member in my application delegate and make it available through a property. Then every time I need to run something in the background, e.g. download some XML I'll just create an NSInvocationOperation and send it to the queque.

    NSInvocationOperation *operationToPerform = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(updateXML) object:nil];
    [[(MyAppDelegate *)[[UIApplication sharedApplication] delegate] sharedOperationQueue] addOperation:operationToPerform];
    [op release];
    
    0 讨论(0)
  • 2020-11-28 20:26

    Cocoa Is My Girlfriend has a good tutorial on the use of NSOperation and NSOperationQueue. The tutorial makes use of NSOperation to download several webpages simultaneously in separate threads.

    Also, see this article from Mac Research.

    0 讨论(0)
提交回复
热议问题