Tagged Questions
0
votes
3answers
88 views
What the Right way To Upload Very big length NSData to server?
I am uploading Image to server. Length Of NSData will depend On the size of image. if image is too big, NSData length will be 6798791 (length will vary). if image is small Request is getting Uploaded ...
0
votes
1answer
95 views
Parsing JSON response from URL gives <null>
I am sending a request to a server in the following way:
- (void) getData
{
NSString *url= @"http://example.com";
NSMutableURLRequest *theRequest= [NSMutableURLRequest requestWithURL:[NSURL ...
0
votes
0answers
57 views
Unable to send data to server using NSURLRequest and NSURLConnection
I am trying to send data to server using below process:
Retrieving data from local db as array of dictionaries, using core data fetch request.
Using NSJSONSerialization to convert received array ...
0
votes
0answers
118 views
iOS: NSData chunk is not appended to the NSMutable body
NSData Chunks are not appended to the NSMutuable Data body properly. The server is asp.net and it requires chunk as a file. It gets the other parameters except for the NSdata chunk. Here is code:
...
1
vote
1answer
49 views
Two Methods of Getting an Image from URL: The Differences?
What are the main differences between the following two methods of fetching a UIImage from a URL? I recently switched from Method 1 to Method 2 in my app and seemed to experience a drastic increase ...
0
votes
1answer
192 views
NSURLConnection doen't return data where dataWithContentsOfURL does
I have an application and I used to get my json data with dataWithContentsOfURL.
But because I need to get it an asynchrone fashion.
Now that I use NSURLConnection to handle this I don't receive any ...
1
vote
3answers
120 views
checking for bad NSURLConnection
i am new to Objective-C and going through the book, The Big Nerd Ranch Guide to Objective-C programming..
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
{
...
3
votes
2answers
532 views
NSURLConnectionDownloadDelegate destinationURL
I am currently developing an iPad iOS 6 Application which uses async downloads.
To receive progress information i used the delegate NSURLConnectionDownloadDelegate.
The download and the progress ...
2
votes
3answers
172 views
data = [NSData dataWithContentsOfURL:theUrl];
What will happen to the data object if 4xx or 5xx error take place?
Does the program crash? does the data object get any kind of data (response error or corrupted data)? or the data object will be ...
0
votes
1answer
154 views
How do I download a file over an authenticated url in iOS?
I'm using NSURLConnection to authenticate over https, which works fine, but when downloading a file using NSData, I'm unable to access the content. How do I download a file over an authenticated url?
...
1
vote
1answer
285 views
How can I get a PHP echo with NSURLConnection?
can I get some help? I'm desperate. I have a PHP script, it is sent parameters, it does some processing and then uses echo for outputting the result. I've used
[[NSString alloc] initWithData:[NSData ...
0
votes
2answers
194 views
Using NSURLRequest+NSURLConnection seems overkill for a webcall with no data return
All,
This might seems very straightforward but I have already gone through the URL loading system program guide and the various NSURL.... classes and not found my answer.
I am just trying to do a ...
0
votes
1answer
111 views
NSMutableString becomes (null) when converted from NSData with length 4000+
I'm sending XML request to some server and getting some response data from it using NSURLConnection:
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSMutableString ...
0
votes
0answers
194 views
Download PDFs iOS
I am having trouble downloading multiple PDF files from a weblink. The code I have can find the files on the web server but it only downloads about 360 bytes. Each file is about 2-3 MB, which when ...
1
vote
1answer
195 views
Collecting data from NSURLConnection
I have the worst internet connection atm, so sorry if this has been asked before..
I have an NSURLConnection for getting some json data. Until now it worked perfectly fine to use the delegate method ...
0
votes
1answer
497 views
On iOS, since dataWithContentsOfURL:options:error: has an option to not cache data, does that mean dataWithContentsOfURL caches data?
The option to not cache data is NSDataReadingUncached.
But if I use dataWithContentsOfURL to update the images from URLs in a UITableViewCell (one image per cell), and I look at the Activities ...
1
vote
1answer
127 views
Downloading many small files in NSData
I'm having the following situation:
I need to download about 100,000 html files from a server. They are all about 50 KB in size. I download them in a loop and store them in NSData.
Here's some ...
0
votes
2answers
105 views
NSURLConnection not downloading all data
How comes when i run this code, the data that gets downloaded seems to have cropped off some information from the first row?
NSURL *url = [NSURL ...
0
votes
1answer
204 views
NSURLConnection Post body size limit issue to WCF?
I would like to upload couple of images and a text file from iphone to WCF using one NSURLConnection Post request. So, I attached the NSData for the images into the body of the request. Apparently, ...
0
votes
2answers
612 views
Parsing JSON response .
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
response=[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];}
Here, I get the response in the ...
0
votes
1answer
297 views
ios problems with downloading an mp4 file
I have set up a connection to download this mp4 clip to my device and I'm using the following delegate function to store the data in a "streaming" type fashion.
- (void)connection:(NSURLConnection ...
1
vote
1answer
871 views
Downloading a large file in iOS app
I'm trying to clean up some existing code that downloads a large file from a server in chunks, checks the checksum on each 50 packets, then stitches them together. I'm having some trouble to see if ...
0
votes
1answer
269 views
NSMutableData Plist for NSMutableDictionary
I am loading a plist via NSURLConnection into NSMutableData.
After that is done I want to read the PLIST into a NSMutableDictionary.
And then add the objects into my array to display them in a ...
0
votes
1answer
297 views
convert NSData to mp4 file
I use NSURLConnection to download remote mp4 file and write data to app directory, then play them.
If I convert the NSData in this delegate method, everything is ok
- ...
0
votes
1answer
632 views
how to get values out of NSData object
I am making a request to my database and in response I am receiving a bunch of data that I am putting into a nsdata object using NSURLConnection methods like so.
- (void)connection:(NSURLConnection ...
2
votes
1answer
2k views
NSURLResponse not always receiving Data
I was wondering why in NSURLResponse in a sendSynchronousRequest would not receive information every time even though no change has occurred. It looks like there is NSData being received but it is not ...
0
votes
1answer
734 views
How to check data integrity when using NSURLConnection sendSynchronousRequest?
I use sendSynchronousRequest:returningResponse:error method of NSURLConnection class to get NSData from network.
...
2
votes
1answer
3k views
NSData for NSURLConnection return NULL in some sites
I'm new in internet connection for iOS.
I'm trying to get data from special site.
The following codes works great with all site to see the data in the url.
However if I change it the special site to ...
0
votes
3answers
185 views
How to get some values from json saved in nsstring?
My WS returns simple json like this:
{
"thumbnail_url": "http://something.com/photos/003/582/test-tiny.jpg?1321956139",
"success": true,
"photo_url": ...
0
votes
1answer
406 views
iPad: ImageIO: <ERROR> JPEGNot a JPEG file: starts with 0xff 0xd9 [closed]
the error-message i quoted in question-title is driving me crazy on my iPad.
i am downloading some Jpeg-Files form HTTP-Servers, and using my code works fine on the iphone (iOS 5.0). On my iPad (4.3) ...
1
vote
1answer
369 views
NSMutableURLRequest and memory issue
Good morning,
I'm developing an application that uploads some files; there are no real issues, but only one big problem: if I try to upload 1gb of files it allocates 1gb of memory, and you can ...
1
vote
1answer
432 views
NSURLConnection and object delegate
Being a novice at Objective-C, I don't get quite the notion of delegate yet. I looked around, but I could not understand the answers being given, so I'm asking this with my own words.
I have ...
0
votes
3answers
2k views
iPhone, NSURLConnection > didReceiveData:(NSData *)data, How to check result data
I use url connection (http).
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
NSString *filePath; /* .../link.plist */
[data writeToFile:filePath ...
0
votes
1answer
535 views
JSON Feed for Twitter for profile image URL
I am trying to figure out the way to download an image file for Twitter JSON URL asynchronously like LazyTableImages.
JSON File looks like :
{
"completed_in": 0.132,
"max_id": 99177223541628930,
...
0
votes
1answer
252 views
Count 0 in numberofrowsinsection
I am downloading data from twitter using JSON feed by using SBJSON Framework example. Once the downloading is done I get numberofrows to 0. Do I have to wait before the data is downloaded or am I ...
4
votes
2answers
1k views
SIGABRT (unrecognized selector) after trying to write NSData from a NSURLConnection to a file
SOLVED: the filename was an autoreleased string no longer available when called at createFileAtPath:
I'm trying to track the progress of the download of a file and the code I'm trying to ...
1
vote
4answers
890 views
NSString initWithData returns nil
I work with server. I send request to the server and it answers me in UTF-8 encoding, but when I try to decode byte array to the string, sometimes I get nil value. How can I decode this bytes array ...
1
vote
1answer
373 views
How to check the NSDATA type?
I have the class which downloads images
First I have NSMutable URLRequest than I establish NSURLConnection and than I want to check which data I received in this function
- ...
0
votes
1answer
327 views
NSURLConnection Download File In another class
I can manage to download something with using NSURLConnection however I want to use a another class to return NSURLConnection result (NSData). I couldn't manage that.
Lets say I have this class:
...
1
vote
1answer
700 views
Reloading string in TableView Cell
Alright heres the deal. I have a sports app that i want to update scores (parsed from a website) that are in a tableview when viewdidappear or when the user scrolls through the list. so basically ...
0
votes
1answer
407 views
What is the correct way to use NSURLConnection return data?
What is the difference between the following two code snippets? When I use the first snippet, the requests goes through but data holds 0 bytes, where as in the second case I do get the data. I know ...
1
vote
1answer
1k views
leaks when using NSData, NSURL,NSMutableURLRequest,NSURLConnection and sendSynchronousRequest
I am getting the leak at this line in below code" NSData *returnData = [NSURLConnection ..........."
NSURL *finalURL = [NSURL URLWithString:curl];
NSMutableURLRequest *theRequest = ...
1
vote
2answers
5k views
Need to convert NSData to NSArray
I am pulling down a plist from a URL using an NSURLConnection, which returns an
NSData object. I would like to convert this to an NSArray. Can anyone help me?
I am refactoring a method that ...
0
votes
1answer
2k views
How do I download contents into an NSData using a Secure URL?
I'm starting with the following snip to download an image
NSError *error = nil;
NSString *url = @"https://...";
[NSData dataWithContentsOfURL:[NSURL urlWithString:url] options:nil error:&error];
...
2
votes
3answers
2k views
iPhone NSURLConnection: What to do with returned NSData Object? Google Docs API
I'm working with the Google Docs API in my iPhone application. I've sent the proper POST request, and received a response along with some NSData. If I NSLog the NSData object, I get this:
NSData ...
2
votes
1answer
2k views
NSData initWithContentsOfURL: options: errorPtr: delegate object?
Is there a way to assign some sort of delegate object when
[[NSData alloc] initWithContentsOfUrl:... options:... errorPtr:...]
is called so that I can monitor percentage complete of a download or ...




