So I\'m trying to do all my REST calls that download data on the background thread so that the UI stays responsive.
I\'m posting some data to a http authenticated url with ASIFormDataRequest. When the authentication fails and the authentication dialog delegate is invoked the upload progress seems to still proceed
I have -(void)requestFailed:(ASIHTTPRequest *)request { NSError *error = [request error]; NSLog(@\"Request Failed Error: %@\", error);
I have used below code in my application of User Registration to interact with remote database. -(IBAction)checkFirstName:(UITextField*)textField
I have discovered ASIHTTPRequest a few days ago and I\'m now blocked on a thing. I would like to authenticate my self on an https address (https://user:pwd@api.domain.com/0.1/userCom/?apikey=12432 )
I\'m trying to load some images in table cells asynchronously using ASINetworkQueue. I just can\'t figure it out and can\'t seem to find a good SIMPLE example.
I\'m writing test cases for a wrapper class written around ASIHTTPRequest. For reasons I can\'t determine, my test cases complete with failure before the ASIHTTPRequest finishes.
I have an app that uses ASI-HTTP-Request for large files, and I had a tester recently note that they wer observing very long loading delays that s开发者_如何转开发hould be manifesting as timeouts. I h
Can anyone please give me a tutorial on how to upload Audio Files onto a server using ASIHTTPRequest?
I\'m using an array of ASIHTTPRequest wrappers (AsyncImageLoader) to download images for cells in a UITableView.