Tagged Questions

on Mac OS X, the NSOperationQueue class regulates the execution of a set of NSOperation objects

learn more… | top users | synonyms

15
votes
2answers
5k views

NSThread vs. NSOperationQueue vs. ??? on the iPhone

Currently I'm using NSThread to cache images in another thread. [NSThread detachNewThreadSelector:@selector(cacheImage:) toTarget:self withObject:image]; Alternately: [self ...
9
votes
1answer
1k views

NSOperation blocks UI painting?

I'm after some advice on the use of NSOperation and drawing: I have a main thread create my NSOperation subclass, which then adds it to an NSOperationQueue. My NSOperation does some heavy ...
8
votes
5answers
829 views

Equivalent of GCD serial dispatch queue in iOS 3.x

Apple's Grand Central Dispatch (GCD) is great, but only works on iOS 4.0 or greater. Apple's documentation says, "[A] serialized operation queue does not offer quite the same behavior as a serial ...
6
votes
3answers
450 views

How to properly deal with a deallocated delegate of a queued nsoperation

In my current project, several view controllers (like vc) spawn NSOperation objects (like operation) that are executed on a static NSOperationQueue. While the operation is waiting or running, it will ...
4
votes
4answers
1k views

Crashing with ASIHTTPRequest and NSOperationQueue when cancelling operations

I'm having a really hard time when trying to cancel requests in an NSOperationQueue. Before deallocating my 'engine' object, I call a cancelOperations method to cancel everything in the queue, so ...
4
votes
1answer
1k views

iPhone: NSOperationQueue running operations serially

I have a singleton NSOperationQueue that handles all of my network requests. I'm noticing, however, that when I have one particularly long operation running (this particular operation takes at least ...
3
votes
1answer
101 views

Is it safe to enumerate through [NSOperationQueue operations]?

Is it safe to enumerate, via fast enumeration, through [NSOperationQueue operations]? Like so: for (NSOperation *op in [operationQueue operations]) { // Do something with op } Since operations ...
2
votes
0answers
33 views

NSOperationQueue with reserve capacity?

Typically NSOperationQueue guarantees thats that tasks with low priorities will not be executed until tasks with high priorities are done executing. However, when a large number of operations are ...
2
votes
3answers
136 views

Using a single shared background thread for iOS data processing?

I have an app where I'm downloading a number of resources from the network, and doing some processing on each one. I don't want this work happening on the main thread, but it's pretty lightweight and ...
2
votes
1answer
164 views

How to cancel NSBlockOperation

I have a long running loop I want to run in the background with an NSOperation. I'd like to use a block: NSBlockOperation *operation = [NSBlockOperation blockOperationWithBlock:^{ while(/* not ...
2
votes
3answers
472 views

nsoperationqueue not working in IOS5

I have a project which downloads images in background using nsoperationqueue. It was working till now on devices with IOS 4.3. However if I build the app with base sdk 4.3 or with 5 and run the app on ...
2
votes
2answers
249 views

performSelectorOnMainThread results in “unrecognized selector sent to instance”

Firstly thanks in advance for your time looking at this question. I'm trying to create a very simple UIViewController example, where I load the data in a thread. The thread is getting called but from ...
2
votes
3answers
610 views

How do I repeat an ASIHTTPRequest?

Given the example code below: // ExampleModel.h @interface ExampleModel : NSObject <ASIHTTPRequestDelegate> { } @property (nonatomic, retain) ASIFormDataRequest *request; @property ...
2
votes
2answers
204 views

Correct way to release object which implements NSOperationQueue and Asynchronous requests

I'm struggling to figure out a solution to my problem, I have a Download class which handles calls to my api, these calls are added to a NSOperationQueue. Each call is assigned a completed and failed ...
2
votes
1answer
485 views

NSUrlConnection in multiple NSOperation instances in a NSOperationQueue

The following code adds multiple NSOperation instances in an NSOperationQueue. The Operation just takes the contents of a url. I'm providing the php code too... Given the following code... ...
2
votes
2answers
194 views

EXC_BAD_ACCESS while adding data to array, using 2 NSOperations simultaneously

I have: 1) Starting 2 asynchron NSUrlRequests simultaneously 2) As soon as one of the two requests has loaded XML data, an NSOperationQueue is used to start a XML parser. Hereby, the ParseOperations ...
2
votes
1answer
465 views

Cancelling one (or several) certain ASIHTTPRequests in an ASINetworkQueue

In my iPhone/iPad app I'm handling all network and web-API-requests through a "APIManager" (singleton, created in AppDelegate). Currently the APIManager contains only one single ASINetworkQueue, to ...
2
votes
1answer
268 views

releasing NSInvocationOperation causes app to crash

Hi I have the following code NSString *analyticsStr = [[NSString alloc] initWithString:[self constructXMLMessage:TagObj]]; NSInvocationOperation *operation = [[NSInvocationOperation alloc] ...
2
votes
1answer
367 views

NSOperationQueue and concurrent operation

As the NSOperationQueue Class Reference said: In iOS, operation queues do not use Grand Central Dispatch to execute operations. They create separate threads for non-concurrent operations and launch ...
2
votes
2answers
775 views

encountering numerous leaks on iphone device when using NSOperationQueue and trying to change sliders / pickers etc

encountering numerous leaks on iphone device when using NSOperationQueue and trying to change sliders / pickers etc. I am able to change labels without an issue, but if I try to change a slider or ...
2
votes
2answers
847 views

how to properly use autoreleasepool for an nsoperationqueue

I have an app that I am refactoring and I just implemented multithreading so that the UI may run smoother. In the iphone simulator I don't get any leaks but testing on my iPhone 3G running on iOS 4.2 ...
2
votes
2answers
1k views

Significant lag when loading image using UIImage from URL asynchronously

I am trying to write an iPad app that loads an image from a URL. I am using the following image loading code: url = [NSURL URLWithString:theURLString]; NSData *data = [NSData ...
2
votes
2answers
475 views

Change dictionary values wrong when using KVO with NSOperationQueue?

I was working through an example in the concurrency chapter of "More iPhone 3 Development," and can't get KVO on an NSOperationQueue working as expected. I create an NSOperationQueue and observe its ...
2
votes
1answer
286 views

NSOperation(s) leaks only on iOS 3 device

I have some NSOperations subclasses that handle CoreData imports. I believe i've ticked most of the non-main thread issues I create my own autorelease pool in the main method I create a ...
2
votes
1answer
614 views

Pause NSOperation

I have NSOperationQueue with some NSOperations in it (NSInvocationOperations, in particular). This operations do some calculations and change states of UI elements accordingly (of course, via ...
2
votes
1answer
373 views

How can I make sure NSOperations execute in a failsafe way?

What I Want I've got an NSOperationQueue in my application and it's critical that all operations get processed before the application quits. I've got the following code on quit to make sure the ...
2
votes
2answers
393 views

Extra retain needed on NSOperation

I'm developing an iPad app. It uses an NSOperation to download something in the background, processed by an NSOperationQueue. I'm finding that, unless I add a retain to the NSOperation, I hit a ...
2
votes
1answer
2k views

NSInvocationOperation and main thread

Imagine that I have a view with some UIKit object as its subview (for example, UIActivityIndicatorView - this doesn't matter). This view also has a selector, called doSomething, which somehow manages ...
2
votes
1answer
373 views

Multiple NSOperationQueues?

I would like to use NSOperations in my application to resolve threading problems. I have read some tutorials and now I know what I have to do, but I have a problem. There is a must to have the same ...
1
vote
3answers
46 views

loading multiple images from web using NSOperationQueue asynchronously

I have an array or urls which points to images present on the server. Now I want to display the images in a scrollview with 4 images on each row. I am thinking about using NSOperationQueue and ...
1
vote
0answers
60 views

UI is not updated from main thread using performSelectorOnMainThread

In my application built for iOS 5.0.1 I have a thread which performs a REST request every 30 seconds, relying on the gtm-http-fetcher tool. This is the method starting the thread: - ...
1
vote
3answers
87 views

NSOperationQueue and Dispatch Queue as replacement of NSThread performing a repetitive task

I have an application in which I am repetitively calling a method in background. I implemented this by following below steps: created a background thread, called the appropriate method on the ...
1
vote
1answer
89 views

Is This Safe? Possible Retain Cycle on Singleton as Self in Block

I'm pretty sure this is 100% safe, but I don't want to miss anything. I have the following code - (void) scheduleControlSurfaceProcess { [self.operationQueueForMessageProcessing ...
1
vote
1answer
69 views

NSFetchedResultsController on main thread ignoring saves to Core Data from a different thread?

I have an NSFetchedResultsController on the main thread. Also from the main thread, I asynchronously send out a network request for JSON. When that JSON string returns, I start an NSOperation that ...
1
vote
2answers
76 views

cancelAllOperations doesn't work for [NSOperationQueue mainQueue]

cancelAllOperations() doesn't work on the mainQueue (the cancel() method is not called on the NSOperation object). Am I missing something? I have to iterate through all operations and call the ...
1
vote
1answer
38 views

Is it good to subclass NSInvocationOperation to add an iVar to track the kind of Operation?

I wanted to identify each of the NSInvocationOperation to identify what this operation in the isFinished in the KVO notification. So I am planning to not to maintain the NSInvocationOperation as an ...
1
vote
1answer
56 views

ASINetworkQueue inside NSOperation error saving Core Data

I want to use the ASINetworkQueue inside an NSOperation. This works great and makes no problem. What fails is saving Core Data. I set up a new NSManagedObjectContext for this Operation like it is told ...
1
vote
2answers
34 views

Pushing multiple views onto a stack without seeing the ones inbetween

I am trying to give my application a feeling of persistance when switching between multiple parts of the application. When they tap on an icon I want it to open directly to the view controller that I ...
1
vote
2answers
163 views

Running NSTimer in NSOperationQueue thread

I'm trying to run an NSTimer on a thread set up by an NSOperationQueue -(void)apiCallbackQueueManager:(NSString *)callid :(NSString *)service:(NSString *)action:(NSString *)data{ SEL theSelector = ...
1
vote
1answer
93 views

Many NSOperationQueues = Many Threads?

I'm wondering would there be many threads if I have one NSOperationQueue in each of my View Controllers, that is, I have many NSOperationQueues in my app. Thank you.
1
vote
1answer
72 views

Is it safe to reference an NSOperation instance and call -isFinished?

I create an NSOperation every time my app launches or resigns active. I need to queue them with dependencies such that two never execute at the same time, but one after another. Is it safe to do ...
1
vote
1answer
320 views

NSOperationQueue vs NSThread Priority — controlling how much cpu is consumed in NSOperationQueue

I have some textures and sound effects preloading I need to do asynchronously to create a smooth user experience in an iOS game I am developing. I am trying to decide between NSOperationQueue and ...
1
vote
2answers
157 views

performSelector in NSOperation subclass

I couldn't find an answer anywhere else on the net so any help would be appreciated. I am tying to create a system whereby I can retrieve the results of an NSOperation task, which I understand cannot ...
1
vote
2answers
231 views

GCD, NSOperationQueue, or create a thread manually?

when you use threads, do you have any preferences, in general rule, to use any of these techniques : create a new thread manually and use the run loop use NSOperationQueue or use Grand Central ...
1
vote
1answer
142 views

ASINetworkQueue setQueueDidFinishSelector selector ending prematurely ?

I've just started testing some upload utility i've built and put 47 items for upload, but the queue stops randomly at the 15th or 18th or 21st item, not sure exactly why, but the selector is being ...
1
vote
2answers
163 views

Handling data returned from multiple NSOperation objects in an NSOperation object that depends on them

I am writing a web-connected application that needs to execute several asynchronous requests to load data needed lower down in the dependency tree. Fig 1. For visualization purposes, consider an ...
1
vote
1answer
155 views

NSOperation cancel problem

I have a problem. In my program I need to cancel operations (subclass NSOperation) in queue after clicking on button. But when I calling [queue cancelAllOperations] nothing happens. The queue continue ...
1
vote
2answers
429 views

How to remove/cancel NSInvocationOperation from NSOperationQueue?

Both of the following questions are being asked in context to maintain NSOperationQueue and NSInvocationOperation. As I have used this concept to download multiple videos, how do I remove/release ...
1
vote
3answers
200 views

NSOperation finsihed

I have an NSOperation running in a NSOperationQueue. The NSOperation downlaods some data and parses it into NSDictionary. How do I know when the NSOperation has finished and get that dictionary? ...
1
vote
1answer
264 views

NSOperationQueue waitUntilAllOperationsAreFinished vs. performSelectorOnMainThread

I have background NSInvocationOperation creating and saving NSArray to the NSManagedObject subclass. I know that save should happen on main thread, so I use performSelectorOnMainThread for save in ...

1 2 3 4