Tagged Questions
1
vote
3answers
63 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
64 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 ...
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
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
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 ...
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
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
176 views
Show activityView WHILE waiting operation end in NSOperationQueue and AFNetworking
I have found a way to queue JSON parsing operation to wait complete data parse, and this is the code:
- (void)LoadParse { // this method is called by a UIButton
NSURLRequest *request = ...
0
votes
2answers
88 views
NSOperationQueue INSIDE an NSOperation
I created an NSOperation which goal is to download a few images (like 20) from 20 URLs.
So inside this NSOperation I create 20 AFImageRequestOperation add them in an NSOperationQueue and call ...
1
vote
0answers
80 views
How can I use multiple AFJSONRequestOperations and combine the results into a single NSDictionary?
I'm not sure if I have two problems here or just one. I'm trying to download multiple JSON files from the Google Calendar API and combine all the results into a single NSDictionary or ...
0
votes
2answers
124 views
Previously posted solution to getting Notification (on NSOperationQueue finishing all tasks) is not working for me
Get notification when NSOperationQueue finishes all tasks
I have the same issue as the one posted by @porneL in the post above. I tried the solution posted by @NickForge (one that received 57 votes), ...
0
votes
1answer
339 views
iOS - Performing multiple AFJSONRequestOperations that write to Core Data in background
I am having trouble determining the best way to manage updates to my apps SQLite database (using Core Data)
When my app launches, it hits a server to determine which tables need updating. I then do a ...
0
votes
0answers
117 views
AFNetworking and NSOperationQueue and concurrent vs serial activity
I am starting to work with AFNetworking and learning about operation queues so some of the terminology is also new to me. It seems that NSOperationQueue provides a lot of flexibility but I'm ...
2
votes
0answers
111 views
AFNetworking - Why does it spawn a network request thread?
I'm trying to understand Operations and Threads better, and looked to AFNetworking's AFURLConnectionOperation subclass for example, real-world, source code.
My current understanding is when instances ...
1
vote
0answers
191 views
NSOperationQueue with AFNetworking: Call method when NSOperationQueue is completed?
I am switching my app from ASIHTTPRequest to AFNetworking. In ASIHTTPRequest there is the ASINetworkQueue class, which lets me queue up a series of HTTP requests, and when the queue is completed, call ...
2
votes
1answer
311 views
How to stop AFHTTPRequestOperation?
The cancel could stop the instance of AFHTTPRequestOperation, but sometimes, it will failed.
Anyone have the solution to stop the AFHTTPRequestOperation instance immediately or with seconds delay ?
0
votes
1answer
569 views
AFNetworking: interrupt background requests for higher priority requests
Using AFNetworking, I need to download ~100 images in the background and store them to disk while ensuring any other network connectivity in my app takes precedence.
~~~~~~~
I've got an application ...
0
votes
2answers
1k views
How do asynchronous NSURL requests fit with grand central dispatch / Operation queues ?
Can someone explain the relationship between asynchronous NSURL requests and GCD and NSOperationQueues?
I am not sure when to use each.
Right now, I have been "getting away" with asynchronous NSURL ...
1
vote
1answer
574 views
Do NSOperations and their completionBlocks run concurrently?
I've got a bunch of NSOperations added to a NSOperationQueue. The operation queue has the maxConcurrentOperationCount set to 1, so that the NSOperations run one after the other.
Now, in the ...
0
votes
1answer
389 views
Objective c - Canceling operations in NSOperationQueue
I'm using AFNetworking AFHTTPClient just for the example, but this question is about NSOperationQueue in general.
The AFHTTPClient manage an NSOperationQueue for requests made by the client.
It ...
1
vote
2answers
2k views
AFNetworking synchrone operation in NSOperationQueue on iPhone
My app is working this way :
- create an album and take pictures
- send them on my server
- get an answer / complementary information after picture analysis.
I have some issue with the sending part. ...
1
vote
0answers
1k views
AFNetworking + NSOperation issues with concurrent requests
i got some problems when using AFNetworking in my project.
let's see:
NSOperationQueue* queue = [[NSOperationQueue alloc] init];
AFJSONRequestOperation* op1 = [self operationSyncLeagues]; ...
2
votes
1answer
2k views
AFNetworking + NsOperationQueue - Download thousands of Images
I am working on a task (iOS5 + only) that involves downloading thousands of images from the server. The images belong to certain categories and each category can have hundreds of images. What I need ...
5
votes
1answer
1k views
AFNetworking: enqueueBatchOfHTTPRequestOperations issue with completion block
I use this AFNetworking method to start multiple requests at once:
- (void)enqueueBatchOfHTTPRequestOperations:(NSArray *)operations
progressBlock:(void (^)(NSUInteger ...
4
votes
2answers
3k views
wait until multiple operations executed - including completion block (AFNetworking)
i have multiple operations(afnetworking requests) with a completion block that takes some time to execute and a coredata object that needs to be saved at the end of all requests
MyCoreDataObject ...
0
votes
1answer
322 views
AFNetworking - Why does the asynchronous XML operation not fire and the loop runs infinitely?
This probably has something to do with my understanding of blocks and probably how/when the NSOperationQueue fires it's operations but I'll ask anyway:
I have a basic fetch request method:
- ...
1
vote
1answer
1k views
AFNetworking setUploadProgressBlock not behaving goes straight to 100%
I am using the AFNetworking Framework to facilitate photo uploads to a website. The uploads work fine, but I need to show progress in a UIProgressView. Problem is, the progress moves from 0 to 100% ...
