1
vote
4answers
68 views

About asynchronous connection in AFNetworking : how to add the response data to NSMutable Array

im a noob and this is my first post here. I tried to load images from URL and assign it to some NSMutableArray or UIImage variable, but it failed. I knew that asynchronous things in AFNetworking has ...
0
votes
0answers
109 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 ...
0
votes
1answer
59 views

AFNetworking are not writing a response in variable

I have a problem code with using AFNetworking: #import "SyncProfile.h" #import "AFNetworking.h" @implementation SyncProfile: NSObject @synthesize delegate = _delegate; - (BOOL)syncProfile { ...
0
votes
0answers
58 views

Grabbing the response from AFHTTPRequestOperation and returning it

So I have a function that takes a dictionary of parameters, creates a AFHTTPRequestOperation that is then executed. I know that when I enqueue the operation it executes asynchronously, so I'm having ...
0
votes
1answer
296 views

Using AFNetworking (AFHTTPClient subclass) to send JSON to server => is this an asynchronous operation

So after much research I figured out how to send a NSDictionary from my iOS 6 client to my rails server. I used AFNetworking. Below is the client side code that sends the JSON. However, Im not sure if ...
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), ...
2
votes
1answer
617 views

IOS/AFNetworking: enqueue two JSON operations and then compare the returned NSArrays

For my app, I have to connect to two webservices that return JSON. I first rolled my own networking code using GCD, but seeing how AFNetworking handles things, I decided to implement it. Most things ...
1
vote
1answer
296 views

How to chain multiple AFNetworking calls to each run after the previous has finished successfully?

The following method uses AFNetworking to send a request to a webservice and (when successful) acts upon the response. AFNetworking does the request asynchronously and uses blocks for success or ...
1
vote
2answers
1k views

Suggestions on asynchronous image loading for UITableView in iOS

I am currently loading my table with a left-sided thumbnail, title and subtitle using this code: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath ...
1
vote
1answer
96 views

Asynchronous Data Download Procedural Break

Following up with the post: Can AFNetworking return data synchronously (inside a block)? One of the comments in that post was: The trick to asynchronous programming is to break the procedural, ...
1
vote
1answer
126 views

How to check if a access token is still valid?

I'm kinda new with ios dev and I am trying to disable a button if the user is already authorized with an access token. I just don't know if there is a clean way of doing it. Right now I have a check ...
0
votes
1answer
72 views

AFNetworking placeholderImage animating?(animating while downloading)

There are apps which show animating images(opposed to a static image) while downloading an image asynchronously. Pinterest is one for example. I wonder if this is possible with AFNetworking? or ...
5
votes
2answers
1k views

AFNetworking for Android

I am in the process of porting my iOS app to Android, and am now in need of a simple to use asynchronous class set to download JSON data and images. For iOS I am using AFNetworking which is an ...
0
votes
1answer
701 views

AFNetworking Asynchronous Data Fetching

I'm using the AFNetworking library to pull a JSON feed from a server to populate a UIPickerView, but I'm having a little trouble wrapping my head around the asynchronous way of doing things. The ...
0
votes
1answer
259 views

AFNetworking Data Fetching Method Not Called

I am creating an app where in the first view, the user is given the option to log-in or register. In the register view is a UITableViewCell that, when clicked, takes the user to a view containing a ...
3
votes
2answers
568 views

Dealing with open async web requests when UIViewController is popped (AFNetworking)

Here's the scenario: -A UIViewController (A) is pushed onto the navigation stack -On viewDidLoad an async GET is called using AFNetworking (a singleton AFHTTPClient shared throughout the application) ...
0
votes
1answer
143 views

return self before async request finished

Hey im having this code so far - (id)initWithDictionary:(NSDictionary *)aDictionary { self = [super init]; if (!self) { return nil; } _userAvatar = [self ...
1
vote
2answers
2k views

AFImageRequestOperation wait until finished

i have a little problem with this, I'm loading an Image from a Url like this: + (void)getImageFromURL:(NSString *)imageFilename urlMode:(NSString *)mode block:(id (^)(UIImage *responseImage))aImage { ...