Tagged Questions
0
votes
0answers
38 views
Manage AFNetworking multiple requests with AFHTTPClient enqueueBatchOfHTTPRequestOperationsWithRequests method
I want to create a table view slide menu like FB or Linkedin, I mean dynamically, so I have to make some requests at the same time. I am using AFNetworking. with a custom AFHTTTPClient which its ...
1
vote
2answers
184 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
85 views
How do I pull JSON from afnetworking to provide data for an object without it crashing
I am using afnetworking to grab JSON data from my rest api. From that JSON data I create UIViewControllers based on how many items are in the array. For example if my JSON data has 3 items, then 3 ...
0
votes
0answers
108 views
issue with pulling data from Afnetworking completion block to separate uiviewcontroller
Hi I have a problem I'm facing right now with pulling data from Afnetworking completion block to a separate uiviewcontroller. Right now I have a three files:
1st file: the parent class ...
1
vote
0answers
76 views
AFNetworking AFHTTPClient AFHttpRequestOperation deadlock on POST
I have been having a strange issue where a file upload seems to hang up without my app hanging. I'm assuming this is some sort of deadlock inside AFHTTPClient, although it could be my hosting provider ...
0
votes
0answers
107 views
Update UI on main thread from AFHTTPRequestOperation
I've built a Rails backend for an iOS app that lets users access a RESTful API only after having authorized the device. Basically authorization is managed by retrieving a token.
When the user submits ...
1
vote
1answer
182 views
GCD stopping async queues from proceeding
I'm downloading a file using AFHTTPRequestOperation from the awesome AFNetworking.
I'm downloading large zip files, which need to be unzipped once the download is finished. But since the ...
-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
1answer
420 views
Issue accessing UIImage outside of AFImageRequestOperation ImageRequestOperationWithRequest: success block
I'm trying to display an image returned from AFImageRequestOperation ImageRequestOperationWithRequest: but it appears that the image is only available inside the success block. I've tried saving it to ...
0
votes
1answer
88 views
UITableViewController executes delate functions before network request finishes
I'm having trouble trying to populate a UITableView with the results of a network request. It seems that my code is alright as it works perfectly when my network is speedy, however, when it's not, the ...
0
votes
1answer
73 views
UITableViews and Asynchronous Data
I am using some sort of UI which you can assume it is a UITableView (please do not suggest UITableView frameworks because what I am using is not a UITableView but functions very similarly.
I am using ...
1
vote
1answer
222 views
Operations, methods and threads
I have some code that makes a http call to a json based webservice. That's working fine but I tried to move the code to it's own class and I have a slight hang up. When I call the method, the main ...
1
vote
1answer
464 views
CoreData not compatible with an AFNetworking request from a GCD queue?
I am using GCD to start a long-running background process ('run_loop') that creates an NSManagedObjectContext ('MOC'), monitors CoreData objects, and sometimes (when they're ready) uploads a ...
0
votes
2answers
3k views
AFNetworking for Image Downloads, Unresponsive UI
I'm using AFNetworking to pull images from a URL, resize, store to disk and log the path in Core Data, then load to a table view and store . When the code executes it freezes my UI. I'm not sure if ...
3
votes
2answers
1k views
Can one execute a completionBlock from ASIHTTPRequest/AFNetworking on a background thread?
I start my ASIHTTPrequest synchronously in a separate thread like this :
//inside this start method I create my ASIHTTPRequest and start it
dispatch_async(dispatch_get_global_queue(0, 0), ^{
...