The NSOperation class is an abstract class you use to encapsulate the code and data associated with a single task
0
votes
4answers
72 views
NSOperation Queue vs NSUrlConnection async
I have an app that is downloading several photos off of Flickr. Right now, all the photos are downloaded with a custom NSOperation class run on an NSOperationQueue.However, I have heard about ...
1
vote
2answers
49 views
How to use NSOperationQueue to download audio files from server one by one
I have an array containing audio file url's. I want to fetch audio files from server using these url's in background mode. I have heard that i can achieve this with NSOperationQueue. My query is
...
1
vote
0answers
20 views
Async NSURLConnection with delegate pattern
I know this question has been asked a lot of time and a lot of suggestions exist on the net. But i am still not able to conclude what is the right way.
After ASIHTTPRequest becoming obsolete, i think ...
1
vote
1answer
47 views
Setting concurrent operation for NSOperationQueue causes only that number of operation
MyI have an NSOperationQueue with NSOperation objects in it
NSOperationQueue *aQueue = [[ NSOperationQueue alloc ] init];
[aQueue setMaxConcurrentOperationCount:3];
for (int index=0; index<=5; ...
1
vote
0answers
29 views
Magical Record create/fetch entity in separate thread
I have a bunch of NSOperations that need to create and fetch entities while running in a queue.
When creating entities in the NSOperations can I simply create using the default context, or since I ...
1
vote
2answers
39 views
NSOperation pass back data
I have been searching but can only find the delegate pattern idea to pass back data from a NSOperation. I have a NSOperation that downloads data upon completion of that NSOperation I would like it to ...
1
vote
1answer
14 views
NSOperationQueue finished wont start new method
When my observer tells me that there are no more operations, function is not called (performSelector...). Funny thing is that NSLog(@"queue has completed") is logged correctly.
- (void) ...
1
vote
1answer
46 views
How to see what started a thread in Xcode?
I have been asked to debug, and improve, a complex multithreaded app, written by someone I don't have access to, that uses concurrent queues (both GCD and NSOperationQueue). I don't have access to a ...
4
votes
1answer
94 views
How to block an NSOperation until an NSOperationQueue finishes?
I have a data loading operation that needs to be run off the main thread to avoid potential blocking issues. To do this, I use an NSOperationQueue and NSOperations.
One issue that has come up, ...
0
votes
3answers
39 views
Serial download with GCD/NSOperation
I have an app where i am trying to download files like images/videos from an URL. At present i am using grand central dispatch to establish a async NSURL connection on my main thread so it do
=
1
vote
1answer
27 views
NSXMLParser inside NSOperation
I have to download and parse huge XML files. Downloading the data occurs in an NSOperation which also triggers the NSXMLParser once the download finishes.
Now since I want to give the user the ...
1
vote
1answer
47 views
Fixing my network activity indicator
I have a problem with my network activity indicator in that sometimes it will continue to be displayed when it should not be.
I wrote my own manager for it and swapped it out for one that uses an ...
3
votes
2answers
72 views
Calling -(void) cancelAllOperations on NSoperationQueue is not setting the isCancelled property of NSOperation that is present inside the Queue
I am facing problem related to NSoperationQueue.
In my code in :
-(void) viewDidLoad
{
//Initialisation of queue and operation.
//adding operation to queue
[self.operationQueue ...
1
vote
1answer
58 views
NSOperation completionBlock is called twice
I'm working on a NSOperation subclass and I came across this very weird issue were the completion block is called twice in a row. The KVO calls seem fine but the completionBlock is still strangely ...
0
votes
0answers
71 views
Is this the right way of using NSOperation (AFXMLRequestOperation)?
In my app I have a series of background tasks to be performed one after the other (say tasks : A, B and C). Each of these tasks talk to different web services (XML). I am using AFXMLRequestOperation ...
0
votes
3answers
47 views
Force stop a NSOperation or GCD?
In my app I am running a server in the background. I am using a NSOperation to do so. (I used GCD before but I need to be able to stop it, so I switched to NSOperation, but I still cannot figure out ...
0
votes
0answers
106 views
Assertion failure in -[UICollectionView _endItemAnimations]
I'm quite a newbie in objective-c programming. I'm trying to make my first app and I can't solve one issue.
I use UICollectionView with NSFetchedResultController in my app. The app downloads data ...
1
vote
2answers
71 views
NSOperation userInfo Dictionary
Is there a way how to have a userInfo NSDictionary for a NSOperation?
Basically i want to assign an ID to an NSOperation, later i want to check, if this ID is already assigned to an NSOperation
- ...
0
votes
0answers
32 views
NSOperation crash on isCancelled
I have implemented a concurrent nsoperation and have ARC enabled. Now my customer is experiencing a crash which I cannot reproduce. He sent me the follow crash log :
Date/Time: 2013-04-24 ...
2
votes
2answers
51 views
Do I need to Block_copy a block that I pass to NSOperation's setCompletionBlock:?
I have a NSOperation's subclass and I want to do something like this:
@interface MyOperation : NSOperation...
MyOperation *myOperation = [[MyOperation alloc] init];
[myOperation setCompletionBlock ...
0
votes
2answers
47 views
NSOperation using GCD, ensure all on the same thread
I have a 'concurrent' NSOperation, and during it's work it uses some controller classes that internally use GCD. When these controller classes return with their completion block, the completion block ...
0
votes
0answers
18 views
how to show a progress of a nsoperation
i am beginning with Objective C, and now i have to add a new function to a small project which have already completed before. my problem is how to show a progress of a nsoperation, this operation ...
0
votes
1answer
27 views
UIAlertView shown in NSOperation - view controller unresponsive
I have an NSOperation subclass that does some heavy calculations. It has a delegate as well.
If the user does not provide correct input, I validate it in the main method and through ...
2
votes
3answers
95 views
Asynchronous url requests inside dispatch_async
I am trying to implement asynchronous url requests in a particular function, I want all these requests to complete and then do a particular action but the action precedes the requests i.e, it is ...
0
votes
0answers
49 views
NSThread, NSOperation Concurrent Object and NSOperationQueue
I am thinking about enhancing FPS for large number of physics objects. I am curious if I need to create a large amount of threads to achieve constant fps or not.
NSOperationQueue: As stated by apple ...
0
votes
1answer
78 views
NSBlockOperation calling a method inside NSOperation
I have a question.
I have the following code:
NSBlockOperation *op=[NSBlockOperation blockOperationWithBlock:^{
[[ClassA sharedInstance] someSingletonMethod:params1];
[ClassB ...
0
votes
2answers
62 views
NSOperationQueue not running all the operations
I am using NSOperationQueue to perform concurrent download and to insert into Core Data.
Following is the code, I am using
if(nil==queue)
{
queue=[[NSOperationQueue alloc]init];
[queue ...
0
votes
0answers
43 views
NSNotificationCenter can not receive message when I use NSOperation
First, I create some AFImageRequestOperations, and I add these NSOperations to a OperationQueue.
Like this:
AFImageRequestOperation * _128RequestOperation = [[AFImageRequestOperation alloc] ...
0
votes
1answer
36 views
Adding NSOperation from NSOperation
Is it safe to add new NSOperation to NSOperationQueue from the main() method of NSOperation? Should I suspend NSOperationQueue before adding? Are there any gotchas in this? Do I have to add that in ...
0
votes
2answers
125 views
Download images in order with AFNetworking
How do you download images in order with AFNetworking? An by "in order", I also mean executing the success blocks in order.
Initially I thought it would be enough to use a NSOperationQueue and set ...
0
votes
1answer
32 views
AFJsonRequestOperaton - How to cancel?
Hi everyone I am interested to implement the pattern recommended here. I am looking at creating a NSMutableSet and storing my AFJSONRequestOperations to it so I can cancel these requests when my View ...
2
votes
2answers
157 views
NSOperationQueue waitUntilAllOperationsAreFinished not working while in background
The app I'm working on periodically refreshes it's local data cache from an application server (10+ requests, each of them take a fair amount of time). I'm currently running these requests ...
0
votes
2answers
141 views
Using NSUrlConnection inside either NSThread or NSOperation
I am developing a static library that needs to do some stuff in the background, without interacting with the main thread. To give you an idea, think of just logging some user events. The library must ...
1
vote
1answer
118 views
Use Blocks with NSOperation
This is a continuation of this post.
I have a problem with blocks with an NSOperation, my application crash in the completionblock.
i think that the problem is a retain cycle (i have a warning : ...
2
votes
1answer
95 views
NSOperation versus Asynchronous NSURLConnection
I have an iPad app that runs a regular server sync process - it runs every 10 seconds or so. The sync process downloads records that are inserted into a CoreData SQL-based store. On occasion the ...
1
vote
1answer
74 views
Why my completionBlock never gets called in an NSOperation?
I've sublcassed an NSOperation and set my completionBlock but it seems to never enter even when the operation finishes. Here's my code:
A catalog controller class sets up the NSOperation:
- ...
2
votes
1answer
77 views
Naming Threads in an NSOperationQueue
NSOperationQueue creates many threads, as you'd expect, and desire. But when you pause the app and debug it in XCode, it's unclear which threads belong to one operation queue and which belong to ...
0
votes
0answers
123 views
Serially queueing conditional HTTP requests with AFNetworking and NSOperationQueue
I am refactoring some existing code. It has about 20 HTTP requests which are executed serially, assuming the previous one returns HTTP status 200 (OK). If the status is not 200, the process stops. ...
1
vote
1answer
141 views
NSOperation with completition block
I have some image processing that take much time and resources, so i use NSOperation + NSOperatioQueue + delegate for callBack. and all work.
now i want to use blocks because its much elegant and ...
0
votes
1answer
25 views
Patching AFJSONRequestOperation to check a variable before running?
I have an NSOperation, Authenticate, which authenticates with the server.
I have another operation, fetchImage of type AFJSONRequestOperation, which depends on Authenticate from being executed ...
0
votes
1answer
41 views
NSOperation hierarchy, units of work
So I was wondering what the best way to break out long tasks into NSOperations. If I have 3 long running tasks, is it better to have one NSOperation subclass that basically does something like
...
0
votes
1answer
107 views
ViewController type name not recognized in one class, but it is in another?
I am getting a build semantic error in XCode when I attempt to build my project. I have 3 NSOperation classes setup to download information from the internet, process it, and send it to the parent ...
0
votes
1answer
88 views
NSManagedObject crashing on NSOperation (ARC)
I was converting my project to ARC, and when I reached some NSOperation subclasses responsible for downloading some images in background, the code began to crash.
So I have my NSOperation subclass ...
1
vote
1answer
460 views
iOS - Async NSURLConnection inside NSOperation
I know this question was asked many times on SO, but I didn't manage to make it work in my project...
So, I want to subclass NSOperation and make it download a file using NSURLConnection. What is the ...
2
votes
1answer
60 views
Howto make sure NSOperationQueue is really empty
In my application I add concurrent operations to my NSOperationQeueu by looping over an array of files that I want to do some operation on. I want to know when the queue is empty and all of the ...
0
votes
1answer
142 views
How to ensure the item of a UIActivityItemProvider is ready when UIActivityViewController presents it?
According to the docs [UIActivityItemProvider item] is run on a secondary thread. This is great for not locking up the UI, but I am finding that it does not always complete by the time the item is ...
0
votes
2answers
90 views
Passing a block as a parameter
Is it possible to pass a fully formed block (a block with all its parameters included) into a method to then have that block executed in the method?
At the moment I have this structure repeated in my ...
2
votes
1answer
79 views
NSOperation with more than one long task
In my understanding, the long running task of an NSOperation should be implemented in its main function, where it gets triggered once the NSOperation is added to an NSOperationQueue.
This worked fine ...
4
votes
2answers
100 views
NSOperationQueue concurrent operations with new threads starting inside operations
I have just started using NSOperation/NSOprationQueue, so forgive me for asking this question. :P
At the start of my app, I want some set of functions to be performed in a queue, so that when one ...
3
votes
1answer
222 views
Default value of maxConcurrentOperationCount for NSOperationQueue
As the title suggests, what is the default value of the maxConcurrentOperationCount for NSOperationQueue?
Is it set to a value of 1?




