on Mac OS X, the NSOperationQueue class regulates the execution of a set of NSOperation objects
1
vote
0answers
19 views
How can I ensure that NSOperationQueue uses only one thread?
ABAddressBookRef can only be accessed by one thread. I think a good model would be having a thread for ABAddressBookRef in the background, besides the main thread.
How can I ensure that there's only ...
0
votes
0answers
23 views
How to play videos, from an array, in MPMoviePlayerController for iOS 6, using NSThreads or NSOperationQueue?
//This MutableArray, has the file name, which the app will pick, from the Bundle.
arrayFileName=[[NSMutableArray alloc]initWithObjects:@"titanic", @"DummyName", @"Dinosaur",@"DummyName",@"titanic", ...
0
votes
3answers
50 views
Log which queue/thread a method is running on
Is there a way to log the thread or queue that a method is running on / called from? Something like:
- (void)foo
{
NSLog(@"Running on %@ queue, %@ thread", queue, thread);
}
1
vote
1answer
9 views
iOS, Delay Display in UITableView with insertRowsAtIndexPaths:withRowAnimation:
I have a custom NSObject class, doing some FTP work (display, transfer...).
This FTP class has a downloadFiles: method, which is launch inside a NSOperationQueue.
And I would like that method to ...
1
vote
2answers
37 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
3answers
65 views
Get underlying dispatch_queue_t from NSOperationQueue
I seem to have some confusion between dispatch_queue_t and NSOperationQueue queues.
By default, AFNetworking's AFImageRequestOperation will execute the success callback block on the application's ...
0
votes
1answer
32 views
Asynchronous Twitter operations in an NSOperationQueue
To download a bunch of Twitter timelines, I created TWRequest objects in a loop and put them into an NSOperationQueue:
twitterRequestQueue = [[NSOperationQueue alloc] init];
// Get a reference to a ...
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) ...
0
votes
1answer
65 views
Measuring response time in AFNetworking HTTP GET
I am trying to measure time taken per GET request when downloading a file using AFNetworking. I am downloading a file repeatedly in a loop.
The problem I am having is that the way I am measuring ...
4
votes
1answer
92 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, ...
2
votes
3answers
138 views
block is likely to lead a retain cycle
I've written the following category for NSOperationBlock
@implementation NSOperationQueue (Extensions)
-(void)addAsynchronousOperationWithBlock:(void (^)(block))operationBlock
{
...
1
vote
1answer
41 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 ...
1
vote
3answers
103 views
Using NSOperatonQueue to speed up long calculation
I'm looking for ways to speed up a lengthy calculation (with two nested for-loops), the results of which will be shown in a plot. I tried NSOperationQueue thinking that each of the inner for loops ...
3
votes
2answers
71 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
4answers
58 views
iOS running multiple operations in a thread
I am new to threads in iOS Development, i have question here consider the following code
[activityIndicator startAnimating];
[self startAnewOperationInSepThread];
[self ...
0
votes
0answers
62 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
2answers
53 views
How to load images from ftp? [iOS]
There are, for example, 100 JSON files and appropriate 100 images on my ftp server.
1.With loading JSON where are no bug (I hope)
NSString *recipesPath = @"ftp://.../recipes/";
NSString ...
0
votes
0answers
89 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
65 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
45 views
Photos Being Returned Randomly From AFImageRequestOperation
In the following code snippet I am authenticating with a web service and retrieving very tiny photos (filesize < 50kb) into core data. This works relatively ok but randomly it doesn't return any ...
0
votes
0answers
30 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
3answers
87 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
1answer
73 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
59 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
42 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
35 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
65 views
Set priority to an NSOperationQueue
GCD enables dispatching blocks to a queue according to 4 global priority queues (high, default, low, background).
I have several NSOperationQueues in my app but want to run each in different priority. ...
0
votes
1answer
78 views
order of operations with addOperationWithBlock
I am facing some weird results with addOperationWithBlock.
My function looks something like this:
-(void) myFunction{
NSLog(@"VISITED");
..
for (NSDictionary *Obj in myObjects)
{
...
0
votes
2answers
111 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 ...
2
votes
2answers
147 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 ...
1
vote
1answer
111 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
87 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 ...
0
votes
2answers
66 views
Suspending already executing task NSOperationQueue
I have problem suspending the current task being executed, I have tried to set NSOperationQueue setSuspended=YES for pausing and setSuspended=NO for resuming the process.
According to apple docs I ...
2
votes
1answer
72 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 ...
1
vote
2answers
144 views
dispatch_after equivalent in NSOperationQueue
I'm moving my code from regular GCD to NSOperationQueue because I need some of the functionality. A lot of my code relies on dispatch_after in order to work properly. Is there a way to do something ...
1
vote
1answer
127 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
36 views
When to create and release NSOperationQueue?
I need an NSOperationQueue to use with NSURLConnection sendAsynchronousRequest but most of the example code I've seen doesn't show it in the context of a working app.
Should NSOperationQueues be ...
0
votes
2answers
253 views
Core Data Fetch Request on Background Thread only working for first fetch
I am using NSOperationQueue & NSInvocationOperation to call a method on my UIViewController which then calls a method in another class which, in turn, parses an XML file from the web and updates ...
1
vote
2answers
146 views
GCD crashes with any task longer than 255 seconds
The following code produces a crash in the iOS simulator.
- (void)viewDidLoad
{
[super viewDidLoad];
dispatch_async(dispatch_get_main_queue(), ^{
NSDate *sleepStart = [NSDate date];
...
2
votes
1answer
79 views
CLLocationManager and serial location updates processing
I need to use the standard location service and perform some processing, including some network calls, every location update notified. I need location updates being processed in FIFO order, to keep ...
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 ...
2
votes
1answer
77 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 ...
0
votes
0answers
86 views
Different results in different downloading ways with ASIHttp
I was trying the ASINetworkQueue recently, in the process I encountered a very strange problem.
I tried to download a zip from server of around 30 MB size, when I was downloading using simple ...
4
votes
2answers
99 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 ...
0
votes
1answer
88 views
How to make the NSOperationQueue serial? [closed]
I am intending to make the NSOperationQueue serial instead of concurrent.
One way I know is:
NSOperationQueue *globalQueue;
globalQueue.maxConcurrentOperationCount =1;
Is there any other way?
3
votes
1answer
204 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?
0
votes
2answers
95 views
Adding operations in NSOperationQueue
I am starting out on NSOperationQueue in iOS and facing some basic issues which I would like to clarify.
This is the code I am using:
-(void) SendRequestWithURL:(NSString*) URL andParam:(id) ...
0
votes
3answers
31 views
how to distinguish between multiple NSXMLParser in NSOperationQueue
I have multiple NSXMLParser in NSOperationQueue. When the NSXMLParser call parserDidEndDocument I need to distinguish between thous parsers. I thought I could use something like userInfo but there is ...
0
votes
0answers
170 views
UIImageView+AFNetworking image request queue blocks other network requests from RestKit
I am downloading Data with RestKit by creating RKObjectRequestOperations and adding them to RestKit's queue:
RKObjectRequestOperation *operation = [RK objectRequestOperationWithRequest:request
...
0
votes
1answer
19 views
why won't these NSInvocationOperation's actually run?
Just trying to do a simple example with NSOperationQueue & NSInvocationOperation. Here's my code:
- (void) runMethodsViaOperationQueue {
NSOperationQueue *thisQueue = [[NSOperationQueue ...




