0
votes
3answers
80 views

Images appear after scrolling table view (AFNetworking)

I am using AFNetworking to download images from server , everything works fine but images wont't be appear unless I scroll table view . here is my code : - (UITableViewCell ...
1
vote
2answers
182 views

iOS AFNetworking blocking main thread

I just recently switched to AFNetworking to handle all my networking within my app. However, it now appears to be blocking the main thread so my MBProgressHUD won't spin until after the operation ...
0
votes
1answer
212 views

AFNetworking POST cannot return json data

I want to make a request with POST method and after that I want them to return the json data or NSDictionary, but they can only return the string when it succeed Like NSString *response = [operation ...
0
votes
0answers
153 views

PUT Method Using AFNetworking

i want to implement afnetworking with put request, but it always shows error when i run it. it works fine with post method, but when i change it to PUT it shows error. AFHTTPClient *httpClient = ...
0
votes
0answers
104 views

AFNetworking doesn't timeout for up to 1 minute on connection failure

I have been reading that you shouldn't manually set a timeout for connections on AFNetworking, such that you may stop a request before it has started or finished. However setting the iPhone to 100% ...
0
votes
1answer
261 views

AFHTTPClient sets Authorization Header Field like “ Token token='\75845hjhrtje845395748' ” But i just want to be the token inside

i am currently trying to implement authorization with AFNetworking. So i tried to put the access_token inside the HTTP-Authorizationheader. But what arrives at the server is like : Token token = ...
2
votes
2answers
151 views

AFNetworking and Batched/Serial Operations

I'm trying to do a series of network operations with AFNetworking. For example: [SomeApiICreated doNetworkingStuff success:^(NSString *message) { ...
2
votes
2answers
109 views

Which are the possible scenarios in which AFHTTPRequestOperation will not call success or failure blocks?

Working on an iOS project, build it with AFNetworking, has been found that for some requests, AFHTTPRequestOperation doesn't call success or failure blocks. The specific case is when we tried to ...
1
vote
2answers
1k views

AFNetworking: Can't get the response string from AFHTTPRequestOperation

Anyone?): I'm having a problem that has made me scratch my head for the last 2 hours, and it most likely a very simple stupid thing I'm missing. I Keep getting a building error when I Call the ...
14
votes
1answer
1k views

What are the differences between MKNetworkKit and AFNetworking?

I'm running some test on those two networking framework: MKNetworkKit and AFNetworking. And I am seeing that it is not easy to see the differences between the two libs. What are the major differences ...
0
votes
1answer
150 views

How can I get an url of an image on any site programmatically in ios app?

How can I get an url of an image on any site programmatically? Maybe I can do it with AFNetworking? Thank you in advance!!!
1
vote
1answer
585 views

Why use AFNetworking instead of dispatch_async?

Why should one use AFNetworking's async methods, when an async call can be done simply with GCD? dispatch_async(bgQ, ^{ //NSURLConnection code ...
3
votes
2answers
683 views

AFNetworking: Access to completion handlers when retrying operation

To give some context: I'm trying to implement a global error handler for authentication errors (using token authentication, not basic), which should try to re-authenticate and then repeat the original ...
6
votes
1answer
1k views

AFNetworking: Handle error globally and repeat request

I have a use case that should be rather common but I can't find an easy way to handle it with AFNetworking: Whenever the server returns a specific status code for any request, I want to: remove a ...
5
votes
1answer
775 views

AFNetworking stopped working under iOS 6

I've noticed recently, that my code, that uses AFNetworking (latest version from master branch) stopped working properly under iOS 6. Here's my code: httpClient = [AFHTTPClient ...
0
votes
1answer
171 views

AFNetworking: Issue with multiple files upload

I'm working on certain part of some app. That part is file upload manager. I have implemented an UploadManager class, which is singleton that inherits from NSObject and has method: - ...
0
votes
4answers
544 views

How many simultaneous downloads make sense on iOS

I have an iOS app which synchronizes a certain number of assets at startup. I'm using AFNetworking and set up an NSOperationQueue to handle all of the downloads. I was wondering, how many simultaneous ...
1
vote
1answer
1k views

canceling downloads using AFNetworking with cancelAllHTTPOperationsWithMethod doesn't work

I'm stuck canceling downloads with AFNetworking. In my app, the user can trigger single movie downloads this way: NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL ...
0
votes
1answer
943 views

AFNetworking and storing Cookies globaly

I have an application where I use AFNetworking for networking. The service that I am talking to uses Basic Auth for authentication. So in my client I use the ...
1
vote
1answer
589 views

why can't my iphone app connect to my server?

i have a weird problem. so i've been working on an iphone app where a user can login, and upon logging in, the app would authorize the user by making an http GET request to the server. if the username ...
0
votes
0answers
843 views

No Response from AFJSONRequestOperation

I'm trying to get the AFJSONRequestOperation to work with http://www.crowdkind.org/mobile/offers. I get through the synchronous part and it returns data and puts it in the table just fine. When I go ...
3
votes
3answers
724 views

AFNetworking Overload a Post Parameter

I am migrating from ASIHTTPRequest to AFNetworking and have run into an issue. I am trying to hit an API with a request that overloads the post parameter. I was previously using ASIFormDataRequest ...
4
votes
1answer
393 views

How best to structure code to download resources using AFNetworking and CoreData in iOS

I first download a single index document using AFHTTPClient and record each record using CoreData. I then need to spin up a separate process to download each individual record. What's the best way to ...
4
votes
2answers
1k views

AFNetworking: encoding URL strings containing '%'-sign fails

I'm using AFNetworking in my iOS App. I've discovered a problem that occurs when request parameters contain percent signs. Then the encoding fails. The method AFURLEncodedStringFromStringWithEncoding ...
22
votes
6answers
11k views

How to set a timeout with AFNetworking

My project is using AFNetworking. https://github.com/AFNetworking/AFNetworking How do I dial down the timeout? Atm with no internet connection the fail block isn't triggered for what feels like ...