Tagged Questions

The NSOperation class is an abstract class you use to encapsulate the code and data associated with a single task

learn more… | top users | synonyms

16
votes
6answers
6k views

Get notification when NSOperationQueue finishes all tasks

NSOperationQueue has waitUntilAllOperationsAreFinished, but I don't want to wait synchronously for it. I just want to hide progress indicator in UI when queue finishes. What's the best way to ...
15
votes
4answers
19k views

NSOperation on the iPhone

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 wrapper around writing your own threaded ...
13
votes
5answers
1k views

Undoing Core Data insertions that are performed off the main thread

I'm working on some code that uses an NSOperation to import data. I'd like for the user to be able to undo the NSManagedObject instances that are created during the import operation. From what I can ...
10
votes
3answers
9k views

How do I do an Asychronous NSURLConnection inside an NSOperation?

I want to do an Asynchrous NSURLConnection inside of an NSOperation on a background thread. (it is because I'm doing some very expensive operations on the data as they come back that want to be done ...
9
votes
1answer
727 views

Why is my app crashing when I modify a Core Data relationship in an NSOperation subclass?

Background I've got the following tree of objects: Name Project Users nil John nil Documents ...
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
4answers
2k views

What tasks are more suitable to NSOperation than GCD?

What tasks would be better suited to using NSOperation as opposed to using GCD when programming for the iPhone? To me they seem to do the same thing. I can't see what strengths and weaknesses one has ...
6
votes
3answers
449 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 ...
6
votes
3answers
2k views

Subclassing NSOperation to be concurrent and cancellable

I am unable to find a good doc about how to subclass NSOperation to be concurrent and also to support cancellation. I read the apple's doc, but I am unable to find an "official" exemple. Here is my ...
6
votes
1answer
181 views

Why does NSOperationQueue on iPhone OS 3.1 hold on to long-cancelled (and released) operations?

I have an app that uses NSOperations to manage service calls to a web API (the calls are based on CURLOperation in Jon Wight's touchcode). There is a certain call that downloads map locations when ...
5
votes
4answers
1k views

Core Data and NSOperation

I'm currently working with an NSPersistentDocument subclass that uses NSOperation to import data in the background. As per the documentation, I'm observing the ...
5
votes
1answer
2k views

NSAssert usage in threads

I'm trying to use NSAssert throughout my iPhone app so that if an unexpected condition occurs, the application fails-fast and crashes with a meaningful message in the crash log. This works fine if ...
5
votes
3answers
893 views

How lightweight is NSOperationQueue on Snow Leopard?

I'm working with some code that does a bunch of asynchronous operating with various callbacks; Snow Leopard has made this incredibly easy with blocks and GCD. I'm calling NSTask from an ...
4
votes
4answers
170 views

How to get hold of the currently executing NSOperation?

Is there an equivalent to [NSOperationQueue currentQueue] or [NSThread currentThread] for NSOperation? I have a fairly complex domain model where the heavy processing happens quite deep down in the ...
4
votes
5answers
3k views

Best practice to send a lot of data in background on iOS4 device?

I have an app that needs to send data (using POST) to a server. This function has to be on one of the NavigationController sub-controllers and user should be able to navigate away from this controller ...
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 ...
4
votes
2answers
2k views

Cocoa - Return information from NSOperation

I have an IPhone app that uses webservices to get data from a server. I'm putting each call to the webservice in a NSOperation subclass so that it can be threaded. My question is, what is the ...
3
votes
1answer
49 views

Using NSThread sleep in an NSOperation

Working with some code, I'm coming across run loops, which I'm new to, inside NSOperations. The NSOperations are busy downloading data - and whilst they are busy, there is code to wait for the ...
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 ...
3
votes
1answer
293 views

Executing RestKit as an NSOperartion

I am currently migrating a project that used ASIHTTPRequest and SBJson to RestKit. The previous implementation was using an NSOperation to make the HTTP Request, parse the JSON object and make the ...
3
votes
2answers
1k views

Can you use cancel/isCancelled with GCD/dispatch_async?

I've been wondering, can you use cancel/cancelAllOperations/.isCancelled with a thread you have launched with GCD? Currently, I just use a boolean as a flag, to cancel the background process. Let's ...
3
votes
2answers
380 views

Core Data concurrency (NSOperation)

In Apple docs it is written: ...you should create the context in main (for a serial queue) or start (for a concurrent queue). But I really don't get what is the difference. Why can't I ...
3
votes
2answers
736 views

NSAutoreleasePool. When is it appropriate to create a new autorelease pool?

On iOS/CocoaTouch I often see code that creates a new instance of NSAutoreleasePool within a method. I recently saw one within an NSOperation. What are the ground rules for setting up a new instance ...
3
votes
3answers
463 views

NSBlockOperation and NSAutoreleasePool

Normally when you create an NSOperation subclass you are responsible for creating and releasing an NSAutoreleasePool in the -main method. When you use an NSBlockOperation, do you need to create an ...
3
votes
2answers
694 views

Constantly growing memory allocation while fetching images over HTTP in iOS

I am implementing an iOS App that needs to fetch a huge amount of images over HTTP. I've tried several approaches but independently what I do, Instuments shows constantly increasing memory allocations ...
3
votes
1answer
372 views

NSURLConnection synchonous methods from within NSOperation

Suppose I have multiple NSOperation objects attached to a concurrent queue. Within these NSOperations, I would call a synchronous method of NSURLConnectionClass, sendSynchronousRequest ... just to ...
3
votes
1answer
553 views

Is it safe to autorelease objects inside an NSOperation?

I am running NSInvocationOperation-type operations in an NSOperationQueue and was wondering if it is safe to autorelease objects - That is, if it is guaranteed that the thread started for each ...
3
votes
1answer
276 views

Core Data: Merging children added on a background context is funky

Background Multi threaded Core Data application NSTreeController and NSOutlineView with bindings Creates children objects in an NSOperation on a background context Merges into main context using ...
3
votes
3answers
3k views

NSOperation and NSNotificationCenter on the main thread

I have an NSOperation. When it is finished I fire a NSNotificationCenter to let the program know that the NSoperation is finished and to update the gui. To my understanding listeners to the ...
3
votes
2answers
2k views

How use sqlite + fdbm library with threading on the iPhone

Related to this SO question, I want to put the data loading in the background. However, I get 'library routine called out of sequence' errors. In this SO thread say that the way is using ...
2
votes
1answer
159 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
1answer
160 views

UIAlertView with a UIActivityIndicator shows up too late/Threading issue

In my app I have a couple places where I'm calling a web service and retrieving JSON, which is then parsed into arrays of objects. The time-consuming part is definitely the web service call. The ...
2
votes
3answers
232 views

Drawing in a background thread on iOS

I have a view with some very complex drawing logic (it's a map view that draws from GIS data). Doing this drawing on the main thread locks up the UI and makes the app unresponsive. I want to move away ...
2
votes
2answers
91 views

How to load content into TableView without blocking the UI?

I'm working on a TableView which controller downloads data from a web feed, parse and populate its content in this TableView. The feed provides data in chunks of 10 items only. So, for example loading ...
2
votes
2answers
131 views

How to stop NSImage lockfocus from Leaking Memory in an NSOperation?

I have a problem with NSImages leaking memory when I draw to them with lock/unlockfocus. The leak goes away when I comment out the LEAKS HERE code below. So I know that is where the leak is happening. ...
2
votes
3answers
76 views

Using an application-lifetime-thread other than the main thread

I've a multi-threading application in which each thread has to do some job, but at a certain point some code needs to be executed serially (like writing into sqlite3 database), so I'm calling that ...
2
votes
1answer
106 views

Creating Dependencies Within An NSOperation

I have a fairly involved download process I want to perform in a background thread. There are some natural dependencies between steps in this process. For example, I need to complete the downloads ...
2
votes
1answer
238 views

Not Able to Add Object to NSMutableArray

Hey guys, I have this code within a function inside a class that is a subclass of NSOperation: //... @implementation DataLoader @synthesize addedAnnotations; @synthesize addedOverlays; @synthesize ...
2
votes
2answers
322 views

NSOperation Cancellation: NSInvocationOperation or NSOperation subclass?

I have a fairly simple, though expensive, task that I need to run in the background, which is the standard NSOperation situation. I also need to make sure the operation supports cancellation, and ...
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
4answers
316 views

NSOperation and SetImage

I need to use a thread in order to retrieve an image from the web and assign it into an image view. I have subclassed NSOperation and called it from my view controller like: NSOperation *operation = ...
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
283 views

Why NSOperation uses 100% CPU cycle when not doing anything?

I just ran into a weird behaviour with NSOperation that I fixed but do not understand. I subclassed NSOperation by following the documentation. When I use the main method below, the application will ...
2
votes
1answer
143 views

Writing NSOperation-friendly methods

I have an object (Processor) containing several methods that perform lengthy calculations. I'd like to use those methods both on the main thread and in NSOperation subclasses. Inside my NSOperation ...
2
votes
1answer
351 views

NSFetchedResultsController and NSOperation

In a UITableViewController, I use an NSFetchedResultsController for my Data. Everything works fine, except for when I start importing some objects in a separate thread: I use an NSOperationQueue in ...
2
votes
3answers
311 views

What to do in a separate thread?

So I've read some stuff about multithreading and NSOperation and wondering how I can use that to improve my app. Using Instruments I have isolated a few places where my app could definitely use a ...
2
votes
3answers
434 views

NSOperation synchronization problem

I am struggling to find a way to synchronize operation on IPhone app. I have three main NSOperation. NSInvocationOperation *showSpinner = [[NSInvocationOperation alloc] initWithTarget:self ...
2
votes
1answer
149 views

How can I make my app more responsive?

Background This is the same background as my previous question, except the Outline view doesn't have a fetch predicate. I've got an NSOutlineView that shows TrainingGroup entities. The ...
2
votes
1answer
285 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
607 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 ...

1 2 3 4 5 6