The NSData class is an apple class for holding generic data. Often used when reading/writing from and to files, and the internet.
3
votes
1answer
74 views
How can I avoid keeping the contents of NSData in active memory?
My app requires data such as images and video to be sent across a network. I managed to split the files up into smaller chunks using an acceptable amount of RAM, like so:
NSData *data = ...
0
votes
0answers
97 views
UIImageJpegRepresentation not working with subdataWithRange
I have this code to split a data object into an array of smaller objects, which works fine for the data I'm using here:
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"image" ...
3
votes
1answer
94 views
Inaccurate NSData size given in bytes
I took a 13.3MB image and added it to XCode. I'm aware that when compiling, XCode performs some tricks to bring down the file size. I did this, to test how big the image now was, after being converted ...
0
votes
3answers
85 views
Find out how much memory an iPhone has?
My app takes the NSData of movie objects and sends it over a network. The problem is, if the video is large enough, I'm worried my app will crash because of having so much data in memory. Is there a ...
2
votes
2answers
64 views
Add UIImage to NSMutableArray
I have a problem with a piece of code that should add images to a NSMutableArray. For some reason the images are not added (the count of the array stays at 0). Can someone please tell me what I'm ...
0
votes
1answer
250 views
Error while converting NSData to NSDictionary using NSKeyedUnarchiver
I want to archive and Unarchive data which contains NSDictionary object. Crash is observed while Unarchiving data. Please find the code and error below,
Archive:
NSData *data = [NSKeyedArchiver ...
0
votes
1answer
238 views
Save NSData always to the same file
I want to save each NSData object to a temp directory in iOS and I want each new object to overwrite the old one.
Objects will be of different formats and of different sizes.
I know how do you get ...
0
votes
1answer
249 views
iOS - How to attach a JSON Object to web request? (NOT using NSURLConnection)
I am trying to send some web requests to back-end API I have setup on my web server.
However, to make things universal I would like to send an entire JSON object to the back-end, and do all my ...
0
votes
1answer
75 views
In what format is NSData when appended to a NSMutableURLRequest?
I'm using NSMutableURLRequest to send data to my PHP server. This is how I create the request:
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL ...
0
votes
1answer
212 views
Data corrupt after converting byte[] to NSData
I have .Net web service response containing a byte[] entry, among other fields.
The data is a PDF file.
I extract the Dictionary from the received data with:
[NSJSONSerialization JSONObjectWithData]
...
0
votes
1answer
350 views
UIImageJPEGRepresentation and UIImagePNGRepresentation both are slow
Here i am converting my image to binary data by category on UIImage which have static method.My Problem is UIImageJPEGRepresentation and UIImagePNGRepresentation are very slow upto 6 second. I need 1 ...
1
vote
1answer
103 views
How to Save NSData to A Location Within my App?
Hi I'm very new to iOS programming (it's been literally 2 weeks) and I have this issue:
In my app I take pictures and put them in a queue for upload, I still haven't implemented the upload part but ...
0
votes
0answers
20 views
NSData Did start load? - Show activity indicator while loading
I am loading a image from my server with the following code:
NSURL * imageURL = [NSURL URLWithString:@"http://server.com/image.png"];
NSData * imageData = [NSData ...
0
votes
1answer
129 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 ...
1
vote
1answer
82 views
En-Decrypt NSData with RNCryptManager over CoreData
I have never anything to do with data encryption, So i started to work with this code
I had done anything, and it works all right if I encrypt some NSData and directly Decrypt the NSData. But it is ...
0
votes
1answer
54 views
iOS Persist a custom NSObject <MKAnnotation>
I'm interested in persistent storage for a custom annotation object
CustomAnnotation : NSObject <MKAnnotation>
which has the following properties
@property (nonatomic, assign) CGFloat val1;
...
0
votes
2answers
179 views
how to extract byte data from bluetooth heart rate monitor in objective c
Im having trouble understanding bytes and uint8_t values.
I am using the sample project created by apple that reads data from a Bluetooth 4.0 heart rate monitor via the heart rate service protocol. ...
0
votes
1answer
57 views
Send NSData to WCF
I have a WCF service, currently expecting byte[] as input parameter, but I want to send NSData from iOS. These types seem incompatible.
I've read a lot about this and most suggest that I convert the ...
0
votes
1answer
95 views
Storing and Reading NSKeyedArchived NSData to/from database
I have an object that contains a large amount of variables that needs to be saved locally as well as onto a database. This object would be serialized and stored locally using NSKeyedArchiver (in ...
0
votes
0answers
80 views
ios GBK NSData to UTF8 NSString
I want to covert a GBK encode NSData to UTF8 NSString with bellowed code.
NSStringEncoding fileEncoding = CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingGB_18030_2000);
NSString ...
1
vote
2answers
86 views
Different between NSData and NSMutableData in iPhone
What is the difference between NSData and NSMutableData ? i am new to iPhone..
-3
votes
1answer
280 views
How to get an array of JSON objects from NSData object [duplicate]
So I'm using an HTTP GET method which returns an array of JSON objects, which are stored in NSData. The array looks like this:
...
1
vote
1answer
55 views
Data is always null… no idea why
NSString *path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"mp4"];
NSLog(@"Path: %@", path);
NSURL *url = [NSURL URLWithString:path];
NSLog(@"URL: %@", url);
NSData *data = [NSData ...
0
votes
1answer
147 views
NSData getBytes provides different results in simulator than on device
I am sending data from a self-written server backend to my iOS device.
The application works fine in the iOS Simulator but not on the device.
For example: I'm sending the integer value 4 - on the ...
0
votes
2answers
116 views
Base64 string to NSData then gunzip
I have a base64 encoded NSString of the binary, which I convert to an NSData object, using @mattt's Godzippa class I am trying to gunzip the nsdata but I get an error:
Error ...
0
votes
0answers
35 views
Using a WiSnap device with iOS device, getting extra zeros with data
I am creating an app that sends data to a WiSnap/WiFly device. So far it sends the right data but it adds three zeros after each byte I want to send.
What I am trying to send is 15 bytes starting ...
0
votes
0answers
111 views
Invalid type in JSON write Exception when generating JSON from object
i want to create a json string to send to the server, but i do not know how to do it. I am using following code but it giving me an exception.
Terminating app due to uncaught exception ...
0
votes
0answers
65 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 ...
3
votes
1answer
152 views
iOS: how to add length of a NSData as its two bytes header?
I have a NSData and I would like to append its length in its header as hex digits. I am able to do this using following code:
unsigned int len = [data length];
NSMutableData *sendData = ...
0
votes
1answer
229 views
NSString containing hex convert to ascii equivalent
I have an NSString that has hex information such as
<00000020 66747970 4d344120 00000000 4d344120 6d703432 69736f6d 00000000 00031203
which came from NSData. What I need to do is convert that ...
-1
votes
4answers
98 views
Creating a large Dummy File
I'm new to this community and also new to iOS development, and I hope that someone can help me with a little problem...
Currently I'm writing a little app for myself, that should create a very large ...
0
votes
0answers
142 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:
...
0
votes
2answers
156 views
How should I read the data from a json string? iphone
I have in a NSString "[{"van" : 1,312, "vuan":12,123}] and in order to get this values for every key, I am doing this:
NSData *data1 = [jsonResponse1 dataUsingEncoding:NSUTF8StringEncoding];
...
2
votes
0answers
256 views
Iphone: How to split NSData video file into chunks and upload the chunks one by one to the server?
I have been trying to split the video file into chunks and send the chunks to the server one by one. But i am not sure if the logic or the code i have written is right! If you could please help me ...
0
votes
1answer
227 views
UIImagePNGRepresentation(UIImage) throwing libpng error : No IDATs written into file
I am creating an application in which i save the thumbnails from the browser. Everything is working fine till i tend to move the directory containing this file into the other directory.
It give this ...
2
votes
2answers
895 views
Convert UIImage to NSData without using UIImagePngrepresentation or UIImageJpegRepresentation
I Need to convert UIImage to NSData but without using UIImagePngRepresentation or UIImageJpegRepresentation, for images from photolib i can use assetlib method as mentioned here Using ALAssetsLibrary ...
2
votes
2answers
197 views
How to construct NSData from its description?
I got the string representation of an NSData via NSLog and I would like to construct the original NSData again for testing purposes, what's the best way to go about doing this?
e.g.
<fe010200 ...
2
votes
0answers
42 views
NSError code 256 - Twitter GET
I have this code here which sometimes works. I make sure that I am connected to the internet before attempting this Get from Twitter, and I am pretty sure it isn't the problem.
...
NSString ...
0
votes
2answers
72 views
Display the rendered feed in a view which is in NSData
The below is the code I used to get a data of URL from a facebook page. I need to display those datas in a view. How to do it?
NSURL *URL = [NSURL ...
1
vote
1answer
107 views
Why won't Java's BufferedReader act like Objective-C's NSData?
I'm developing an application running on Android and iOS devices. For this app I need to get an XML stream from a URL. This XML is not really safe, because some lines, for example :
Révélation
...
0
votes
1answer
123 views
Can I Archive NSData objects inside another NSData without corrupting data?
I have two NSData objects I want to store within a third NSData object. The idea is I want to make it easy when I later decode the larger object, to get at the two smaller objects independently of ...
3
votes
6answers
475 views
Download Images Asynchronously To NSData And Cache
First of all, this is not a duplicate question. I have read many questions on Stack Overflow, but they didn't help to solve my problem completely.
I am downloading images from a web service. As no ...
1
vote
2answers
65 views
How do I convert NSData back to NSArray
So first I have this code to convert the NSArray into NSData:
NSArray *myArray = [[NSArray alloc] initWithObjects:[NSNumber numberWithInt:3], nil];
NSData* encodedArray = [NSData ...
0
votes
0answers
39 views
EKReminder to NSData
in my app I create an array of EKReminders of the users device.
I want store each reminder as a string (they have to be stored as a string!) so I thought I would transform the reminder to NSData and ...
1
vote
1answer
92 views
How to store MKOverlay object to file for retrieving later
I am writing an iOS application to record your travel path and then storing it so that it can be retrieved later. Most of the code for drawing the path is based on the sample code Breadcrumb.
Now I ...
0
votes
1answer
168 views
UIImage from NSData in UITableView - performance issue
I am storing images from Photos Album in my app documents directory as NSData and than displaying them in UITableView. I have problem with performance. It takes a good few seconds to save image into ...
1
vote
1answer
164 views
Max parameter size for NSData / setHTTPBody?
My iPad app sends a list of files as a string parameter, fileList to a web method like this:
NSString *post = [NSString stringWithFormat:@"sessionID=%@&fileList=%@&dateTime=%@&userID=%@", ...
1
vote
3answers
115 views
UIImage AsPNG and AsJPEG fails
I'm using MonoTouch and I have a UIImage (displayed in a UIImageView and it looks good) and I'm trying to convert it to NSData, but AsJPEG and AsPNG returns null. What can be the problem?
My code ...
1
vote
1answer
51 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 ...
1
vote
2answers
105 views
IOS: open sqlite from an URL
I want open a sqlite db but it is not in my mainBundle but in a server then I don't have this
NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] ...



