Tagged Questions
0
votes
2answers
35 views
iOS - How to get notified when AFHTTPClient is done with all operations
I use AFHTTPClient to upload files to an API as a AFMultipartFormData.
AFHTTPRequestOperation-s are created in a loop so I don't know how many they are or which one will be the last operation.
How ...
5
votes
3answers
126 views
iOS - upload picture with ImageShack JSON API
I'm trying to upload a picture to ImageShack using their API:
- (void)uploadImage2:(UIImage *)image
{
NSData *imageToUpload = UIImagePNGRepresentation(image);
if (imageToUpload)
{
...
0
votes
2answers
161 views
AFNetworing - setImageWithURLRequest not working
I want to set tableview cell images in one of my apps. I use AFNetworking (1.2.1) and I do it with setImageWithURLRequest.
My code in which I set images looks like this:
if (user.avatar) {
...
0
votes
2answers
115 views
AFNetworking, callback when finished request?
I wonder if it's possible to get a callback when AFNetworkingfinished a request? I'm making an app in which I have a edge case, all downloaded items is checked is_deleted (and should not be displayed ...
1
vote
1answer
115 views
How to dynamically display parsed contents of XML on UITableView using RaptureXML and AFNetworking?
I'm using RaptureXML and the wrapper AFRaptureXMLRequestOperation that integrates AFNetworking and RaptureXML.
The code below is working fine. All is well downloading, parsing and displaying the ...
2
votes
0answers
182 views
AFNetworking HTTP POST upload image stopping when near completion
I am using the code below to HTTP POST a multi-part web form, including a JPEG image.
Code:
NSMutableDictionary *params = [[NSMutableDictionary alloc] init];
[params setObject:nameField.text ...
0
votes
1answer
287 views
AFNetworking and synchronous request to fulfil online registration process
I am using AFNetworking and I've read that synchronous responses are discouraged. yet I need to check whether a user already exist in the online database before the person can go to the next stage of ...
0
votes
2answers
140 views
setting UIImageView rounded corners with AFNetworking setImageWithURL:
This works when not using AFNetworking's category method on the UIImageView, but I realize AF is probably overwriting whatever is done since this is happening async:
this is in my custom ...
1
vote
2answers
114 views
Load Images One At A Time
So this code basically gets data from a server, creates an image, and then adds it to the view.
However, I would like it to update the view one at a time.
Right now, the view is updated with all ...
0
votes
1answer
253 views
Why is my JSON request failing with AFNetworking?
I'm accessing the Clear Read API to extract the article text from a link, and the API works by putting in parameters into this URL: http://api.thequeue.org/v1/clear?url=&format= where after URL ...
0
votes
1answer
337 views
How to wait until a async call complete, including completion block (AFNetworking)
At first
I have this
ZTCAPIClient *api = [ZTCAPIClient sharedClient];
__block BOOL sessionSuccess = NO;
//Get session
[api getPath:@"api-getsessionid.json" parameters:nil ...
0
votes
2answers
137 views
How to presentModalViewController in applicationDidFinishLaunching?
Here is my situation:
I have a TaskListViewController(UITableView) which need Internet.
So I used AFNetworking to do some login work(with demo account and password) before the TaskList is showed.
Now ...
1
vote
1answer
163 views
AFNetworking Request Time Out but still completed Request
I'm uploading many files to my server via AFNetworking, either many small files or a couple of large files, but total never uploading more than 250MB of file(s) at once. In order to allow the upload ...
1
vote
0answers
69 views
AFNetworking PUT request occasionally doesn't finish
When I PUT a JSON object to my subclassed AFHTTPClient using this method,
- (void)putPath:parameters:success:failure:
It works 95% of the time. BUT, every once in a while, the operation never ...
0
votes
2answers
109 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
133 views
get JSON from multiple URL using AFNetworking
i need to load more than 50 youtube video on UITableView using AFNetworking.
Do i have to use AFJSONRequestOperation multiple times in viewdidload to download the data ?
Here is what i have tried:
...
0
votes
2answers
135 views
Bug in NSURLRequest or AFNetworking?
Not sure if this is a bug or I am missing something, most likely latter. My AFHTTPClient's base url is:
#define kBaseURL @"http://localhost:4567/api/"
self.client = [[AFHTTPClient alloc] ...
0
votes
2answers
159 views
How to check if ftp URL is correct and reachable?
I'm writing an app for iPad, that must upload/download files from FTP server. So how can I check if FTP URL, that user enters is correct and reachable? I'm using AFNetworking for downloading files, so ...
0
votes
1answer
182 views
AFNetworking UIAlertView when in background and no network
I am using AFNetworking to update location details to a server in the background (using significant location change).
Everything works fine, except when driving round and it attempts to upload to my ...
1
vote
1answer
266 views
Prevent Man in the Middle attack with AFNetworking
I am using AFNetworking to send data over SSL. How do I prevent man-in-the-middle attacks? How can I be sure that I am receiving and sending the data to my server and not some other server?
Here is ...
0
votes
1answer
1k views
AFNetworking to run synchronously
I am running AFNetworking asynchronously. See code below.
I want to run it synchronously to do a package download (I need to get the list of services that people will be able to choose from). How ...
0
votes
1answer
56 views
AFNetworking files missing in compile sources
AFNetworking files not showing up in compile sources after importing the AFNetworking folder into the project. If i add it from there it works but it will import new AFNetwork files which already ...
0
votes
2answers
3k views
Downloading large files with AFNetworking
I'm trying to implement downloading of a large file and show to user current progress, but block in:
-[AFURLConnectionOperation setDownloadProgressBlock:]
returns incorrect bytesRead and ...
0
votes
1answer
284 views
AFNetworking converting my String values to integers while returning JSON?
I have created a rest service whose output is of the form
{
"id": "1905",
"groupId": "724",
"giftingId": null,
"name": "This is a great service",
}
I am using ...
1
vote
1answer
383 views
AFImageRequestOperation returns image that not downloaded competely
+[AFImageRequestOperation imageRequestOperationWithRequest:
imageProcessingBlock:
success:
...
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 ...
2
votes
1answer
987 views
AFNetworking show upload-progress
I have an question about using AFNetworking and showing a upload-progress.
Scenario:
From a tableview the user can click on a row and go into a detailview.
In the detailview the user can upload five ...
0
votes
3answers
2k views
AFNetworking upload image working intermittently
I'm using AFNetworking to upload an image along with a few parameters to a PHP script (built with CodeIgniter) which will receive the image, place the file name and parameters in a database and move ...
0
votes
0answers
81 views
Distinguish between requests AFNetworking
I started using AFnetowrking library after seeing the much beloved ASIHttp library is not longer supported. I am in situation where I am downloading bunch of images and I need to distinguish between ...
0
votes
0answers
349 views
Should I consider using AFNetworking instead of NSURLConnection? [closed]
I've been using Apple's NSURLConnection methods for one of my projects that had to interact with a PHP backend returning JSON output. I used to find that the NSURLConnection methods were quite simple ...
0
votes
1answer
333 views
PDF uploaded from iOS to Rails gets corrupted
I'm uploading a pdf file from an iOS application to a Rails application.
The file is uploaded, but its content type gets corrupted.
Here is the relevant part of the iOS code to upload the file (using ...
4
votes
2answers
1k views
AFNetworking authentication with web service
Having an issue which is more of a design consideration than that of code.
My iOS app interfaces with a json web service. I am using AFNetworking and my issue is basically I need the init function ...
-1
votes
1answer
564 views
Objective - C http Request
I need to send http request on server
i doing and then I use AFNetworking to send request. I bad know what i must set in parametrs
NSMutableURLRequest* request = [NSMutableURLRequest ...
0
votes
1answer
390 views
Maintaining persistent connection with HTTP server so as to get continuous stream
this is the procedure of requirement.
1) I make a request, which will make a connection. It might break, but should be notified to programmer by callback.
2) the data comes as a stream from endless ...
6
votes
1answer
766 views
otest crash with -[id<NSURLAuthenticationChallengeSender> userCredential:]
We have a class that uses AFHTTPClient and AFHTTPRequestOperation's internally. In development, we connect to a server with an invalid SSL Certificate, so we have this code in the method that returns ...
1
vote
1answer
1k views
AFNetworking progress
I am trying to use setDownloadProgressBlock of AFHTTPRequestOperation class. The call back gives me 3 parameters:
( NSInteger bytesRead , NSInteger totalBytesRead , NSInteger totalBytesExpectedToRead ...
0
votes
3answers
486 views
How do you get mutable dictionaries from AFNetworking and AFJSONRequestOperation?
I'm using JSONKit with AFNetworking's AFHTTPClient (with AFJSONRequestOperation) and I can't seem to figure out how one might trigger the use of the mutableObjectFrom... methods of JSONKit rather than ...
0
votes
1answer
85 views
Picture download overhead
My app has an UITableView. Its cells downloads pictures from tumblr using AFNetworking. This actually does work but I noticed that my app need like 5 MB more of memory as soon as I start downloading ...
15
votes
4answers
9k views
AFNetworking and No Internet Connection scenario
I use AFNetworking in my app for every request (like login, get data from url, etc).
Take this for example: an user click on the login button and there's no connection, how to instantly display a ...
2
votes
1answer
2k views
How to connect to HTTPS Server with self-signed cert using AFNetworking?
I just started to work in a small company, that has no properly signed SSL-certificates yet. But their test HTTP Servers offer HTTPS exclusively.
I want to create a iOS client using AFNetworking.
How ...
5
votes
2answers
3k views
AFnetworking downloading multiple files
I'm using this code to loop through an array to download multiple files and write to disk.
-(void)download
{
//set url paths
for (NSString *filename in syncArray)
{
NSString *urlpath = [NSString ...
0
votes
2answers
3k views
AFNetworking HTTPClient subclass with XMLParser
I am writing a small iOS app that queries a XML REST webservice. The networking framework in use is AFNetworking.
Situation
To query the webservice I subclassed AFHTTPClient:
@interface MyApiClient ...
