Tagged Questions
0
votes
0answers
64 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
118 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 ...
0
votes
0answers
121 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. ...
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
127 views
Waiting for an AFHTTPRequestOperation to complete before continuing
i'm trying to make an iOS App that communicates with an API using AFHTTPClient. The first step is to authentificate the user, to do so, i use this code:
-(void)authorize
{
NSURLRequest *request ...
0
votes
1answer
180 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
90 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 ...
0
votes
1answer
259 views
AFURLConnectionOperation 'start' method gets called before it is ready and never gets called again afterwards
We use AFNetworking (https://github.com/AFNetworking/AFNetworking) in our app and NSOperationStack (https://github.com/nicklockwood/NSOperationStack) to set dependencies so that last operation gets ...
1
vote
1answer
302 views
AFNetworking Completion Block
In my current design I have a tableview which represents a folder structure. When the user taps on a cell an AFHTTPRequestOperation is created to download a file. The file is downloaded while the ...
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 ...
2
votes
1answer
314 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 ?
-1
votes
1answer
102 views
Several redeclaration errors occur when AFDownloadRequestOperation is added
When I add AFDownloadRequestOperation I get several errors that result in the inability for me to successfully build my project...
These errors all seem to be of a redeclaration nature. My first ...
0
votes
2answers
1k views
Issue with setImageWithURL AFNetworking success handler
Neither the success or failure handler appears to be called when setImageWithURLRequest: is called on my UIImage object. SetImageWithURL does not set my image either. If I use setImageWithURL: ...
0
votes
1answer
69 views
AFNetworking - operation time issue
I'am foolin around with AFNetworking, and I need help.
I want a UIView to appears (Scroll up) when I make an operation request, and when the operation is done the UIView disappers (Scroll down). - ...
0
votes
2answers
1k views
How to immediately force cancel an NSOperation with AFNetworking?
I am using AFNetworking in my application and I am attempting to implement a "Tap To Cancel" feature in my progress HUD. I have a singleton class that manages all of the HTTP requests. If the progress ...
1
vote
1answer
581 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
393 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. ...
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 ...
2
votes
3answers
5k views
Waiting for completion block to complete in an AFNetworking request
I am making a JSON request with AFNetworking and then call [operation waitUntilFinished] to wait on the operation and the success or failure blocks. But, it seems to fall right though - in terms of ...
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% ...