5
votes
3answers
108 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 f …
4
votes
3answers
2k 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 yo …
2
votes
2answers
173 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 …
1
vote
1answer
30 views
Cancelling operation with connection inside
I have a NSOperation that downloads some data using NSURLConnection, it looks somewhat like this:
....
- (void)main
{
....
while (!self.isCancelled && !self.isLoaded)
…
1
vote
2answers
131 views
NSURLDownload delegate methods on a separate thread
Hey,
Is anyone aware of a way to receive NSURLDownload's delegate methods on a separate thread, i.e. not the main one? I am using an NSOperationQueue to manage them but at the mom …
1
vote
2answers
132 views
How do I bind a NSProgressIndicator to a property of a NSOperation?
I've got a window which reflects the status of an NSOperation. How should I bind the NSProgressIndicator to the NSOperation's progress-property?
1
vote
2answers
81 views
EXEC_BAD_ACCESS when using NSOperation
This is pretty much the same problem i have, except with very different code: http://www.cocoabuilder.com/archive/message/cocoa/2009/3/24/233015
I want to offload some processing …
1
vote
3answers
481 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 t …
1
vote
3answers
277 views
NSOperation + Objective-C Categories = Bad Idea?
I've set up an Objective-C category for an iPhone app's UIImageView class. The category's mission is to help load URL-based images asynchronously with memory/disk caching.
Now, in …
1
vote
1answer
251 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 …
1
vote
4answers
223 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 …
0
votes
2answers
59 views
How to properly multi-thread with Core Data?
Hi there,
I'm having a lot of issues with trying to perform some core data operations in a threaded NSOperation.
Currently, I have created a managed object context in my app dele …
0
votes
1answer
38 views
iPhone - return from an NSOperation
Hi
I am using a subclass of NSOperation to do some background processes. I want the operation to be cancelled when the user clicks a button.
Here's what my NSOperation subclass l …
0
votes
2answers
41 views
NSOperation performSelectorOnMainThread crashes
Hi!
I'm calling a NSOperation from a Subview of a NavigationController.
MyOperation *op = [[MyOperation alloc] target:self action:@selector(didFinishOperation)];
The Operation …
0
votes
3answers
56 views
UIActivityIndicatorView with UITableView in Navigation Controller
Hello guys,
I am working on a an application which is very simple
a navigation controller with a table view
when the user clicks a row, he is directed to the details view.
Howeve …
