Tagged Questions
The NSData class is an apple class for holding generic data. Often used when reading/writing from and to files, and the internet.
87
votes
4answers
46k views
38
votes
2answers
22k views
Convert UTF-8 encoded NSData to NSString
I have UTF-8 encoded nsdata from windows server. I want to convert it to nsstring for iphone. Since data contains characters(like degree symbol) which have different values on both platforms, how do I ...
11
votes
3answers
986 views
cocoa 64bit binaries leak memory? (releasing NSData does not free memory)
i've been playing some time with different builds of my application and there seem strange things to happen:
my app has a 5mb idle footprint. when uploading a file memory in size of the file is ...
11
votes
4answers
16k views
Reading and writing images to an SQLite DB for iPhone use
I've set up a SQLite DB that currently reads and writes NSStrings perfectly. I also want to store an image in the database and recall it later. I've read up a bit on using NSData and encoding the ...
10
votes
6answers
5k views
Slow start for AVAudioPlayer the first time a sound is played
I'm trying to eliminate startup lag when playing a (very short -- less than 2 seconds) audio file via AVAudioPlayer on the iPhone.
First, the code:
NSString *audioFile = [NSString ...
8
votes
8answers
3k views
Best way to serialize a NSData into an hexadeximal string
I am looking for a nice-cocoa way to serialize a NSData object into an hexadecimal string. The idea is to serialize the deviceToken used for notification before sending it to my server.
I have the ...
7
votes
2answers
395 views
iPhone, how does one read an image from the photo library as NSData?
On the iPhone I saved an image to the photo library with modifications (appending data after the image code) using the assest library to save the NSData directly to the photo library. Now I want to ...
7
votes
6answers
476 views
How can a moderately sized memory allocation fail in a 64 bit process on Mac OS X?
I'm building a photo book layout application. The application frequently decompresses JPEG images into in-memory bitmap buffers. The size of the images is constrained to 100 megapixels (while they ...
7
votes
3answers
9k views
NSData to display as a string
this is my first post. I am building an iPhone app and stuck with the following:
unsigned char hashedChars[32];
CC_SHA256([inputString UTF8String], [inputString ...
7
votes
1answer
6k views
Append NSData to a file in Objective C
I'm attempting to download a large file on the iPhone and save it to disk as it is downloaded.
Ideally, in:
-(void)connection:(NSURLConnection*)connection didReceiveData:(NSData*)data {
}
I want ...
7
votes
2answers
3k views
Compute a checksum on the iPhone from NSData
Using the iPhone SDK, I'm having the user select images from the image picker. If the user selects an image they've selected before, I'd like to make the user aware of it.
My initial plan (just to ...
6
votes
7answers
5k views
Correct way to load image into UIWebView from NSData object
I have downloaded a gif image into an NSData object (I've checked the contents of the NSData object and it's definitely populated). Now I want to load that image into my UIWebView. I've tried the ...
6
votes
3answers
2k views
UIImage created from CGImageRef fails with UIImagePNGRepresentation
I'm using the following code to crop and create a new UIImage out of a bigger one. I've isolated the issue to be with the function CGImageCreateWithImageInRect() which seem to not set some CGImage ...
6
votes
1answer
3k views
NSData & NSURL - url with space having problem
I have following code in my application.
NSData *data=[NSData dataWithContentsOfURL:[NSURL URLWithString:pathOfThumbNail]];
pathOfThumbNail has following path
...
6
votes
1answer
5k views
iPhone - int to NSData?
I'm making an iPhone app where I want to save state of the Application. This includes an int property which I'm persisting to a file on its own. I have it written and working, but I know the way I did ...
5
votes
1answer
271 views
uploading or exporting a large video sucks memory and causes crash…how can I break it up?
I've implemented a way to upload video to youtube, etc. using multipart post, or save a video to the camera roll locally. However, with large videos I get watchdogged due to too large of a memory ...
5
votes
3answers
7k views
How to compress/resize image on iPhone OS SDK before uploading to a server?
I'm currently uploading an image to a server using Imgur on iOS with the following code:
NSData* imageData = UIImagePNGRepresentation(image);
NSArray* paths = ...
5
votes
2answers
1k views
Base64 Encode File Using NSData Chunks
Update 4
Per Greg's suggestion I've created one pair of image/text that shows the output from a 37k image to base64 encoded, using 100k chunks. Since the file is only 37k it's safe to say the loop ...
5
votes
2answers
7k views
Encrypted NSData to NSString in obj-c?
I have an iPhone app which encrypts an inputted NSString using CCCrypt (AES256) and a plaintext key. The string and key are given to the encryption method which returns an NSData object.
Requesting ...
5
votes
1answer
8k views
How do I convert NSString to NSData?
I have this line of code to convert NSString to NSData:
NSData *data = [NSData dataWithBytes:[message UTF8String] length:[message lengthOfBytesUsingEncoding:NSUTF8StringEncoding]];
How do I do this ...
4
votes
2answers
141 views
Trying to turn [NSImage imageNamed:NSImageNameUser] into NSData
If I create an NSImage via something like:
NSImage *icon = [NSImage imageNamed:NSImageNameUser];
it only has one representation, a NSCoreUIImageRep which seems to be a private class.
I'd like to ...
4
votes
2answers
185 views
Is it a problem to call [NSData dataWithData:] with an NSMutableData object? ios
Is it ok for me to do the following:
NSMutableData *mutData = [[NSMutableData alloc] init];
//Giving some value to mutData
NSData *immutableData = [NSData dataWithData:mutData];
[mutData release];
...
4
votes
6answers
131 views
Quickest way to be sure region of memory is blank (all NULL)?
If I have an unsigned char *data pointer and I want to check whether size_t length of the data at that pointer is NULL, what would be the fastest way to do that? In other words, what's the fastest way ...
4
votes
1answer
167 views
How to create .CSV file with string and image in iphone programatically?
I want to create a csv file which contains both string and image. I am able to give the input as a strings separated by commas. Ex
NSArray *paths = ...
4
votes
1answer
284 views
MKMapView -> to UIImage -> to NSData
for a MKMapView : UIView
how could i convert the content of the mkmapview to a uiimage?
although from the mkmapview the end goal (or primary main objective, if you know what i mean) is a NSData var ...
4
votes
3answers
180 views
Strange data ending up in users' XML saved file
My app uses XML to save user data to a file. I have just recently received 2 reports from users who are seeing completely unexpected data in their file. Instead of XML, it looks like this:
...
4
votes
1answer
614 views
How do I validate that an NSData is a PDF?
In working on a feed-reading iPhone app which displays nsdata's (html and pdf) in a UIWebView. I am hitting a snag in some PDF validation logic. I have an NSData object which I know contains a file ...
4
votes
1answer
2k views
Split NSData objects into other NSData objects with a given size
I'm having an NSData object of approximately 1000kb big. Now I want to transfer this via bluetooth. This would be better if I have let's say 10 objects of 100kb. It comes to mind that I should use the ...
4
votes
1answer
421 views
NSSet to NSData, then back out again, for GameKit?
I'm trying to do some image edit syncing between two of the same app running on different iPhones. I would like to send an NSSet * from one device to another (which I imagine involves encapsulating in ...
4
votes
4answers
6k views
How do I convert NSDictionary to NSData as a plist (without saving the dictionary)
Does anyone know how to convert a NSDictionary object into an NSData object as a plist without saving the dictionary first?
I would like my iphone app to send an email with a plist containing my ...
4
votes
1answer
2k views
What is NSConcreteData, and where is it defined?
The following code:
[[NSData alloc]initWithContentsOfURL:[NSURL URLWithString:mapURL]]
returns an instance of NSConcreteData as opposed to NSData (which I expected!). What does NSConcreteData ...
3
votes
3answers
136 views
How to convert NSValue to NSData and back?
A have a number of NSValue (obtained via KVC valueForKey) that I need to append to an NSData object in order to send it over the network using Game Center. Obviously I will also need to convert the ...
3
votes
1answer
266 views
How to convert NSData to NSArray (or NSObject)
I did test this code, but it cause SIGABRT error.
NSArray *array = [NSKeyedUnarchiver unarchiveObjectWithData:data]
NSData is plist data with xml format. This code works fine.
[urlData ...
3
votes
3answers
350 views
converting NSdata to int
I've an NSData object, the length is 4 bytes .These four bytes i'm extracting from another NSData object using ,
fourByteData=[completeData subdataWithRange:NSMakeRange(0, 16)];
My first question ...
3
votes
1answer
235 views
Converting HEX NSString To NSData
I'm trying to convert a Hex NSString to NSData(I'm using the below attached code). The following is the output: <00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000> which looks ...
3
votes
3answers
234 views
Handling CFNull objects in NSPropertyListSerialization
In my application, I am trying to serialize a server response dictionary and writing it to file system. But I am getting error "Property list invalid for format" for some responses. The reason is ...
3
votes
3answers
942 views
Determine MIME Type of NSData Loaded From a File
For various reasons I am intercepting http requests and loading content from files in my app's document directory using NSURLProtocol. Part of the process involves loading an NSData object, which ...
3
votes
1answer
619 views
Why does this NSString created from an NSData object fail to show it has contents?
Why does the following code produce the logging at the bottom ?
Here is the anomaly- my second NSLog should print the chrStr but produces nothing, empty, which is verified by this debug command:
...
3
votes
1answer
2k views
CGPDFDocumentRef from NSData
I get my PDF from SQLite DB into a NSData variable. Now what are my options to create CGPDFDocumentRef from this NSData?
Or what are my options anyway to create this CGPDFDocumentRef, have the data ...
3
votes
1answer
1k views
How to convert a string to NSData
i have a string that I use to create a file. I now need to take that file and get it into an NSData object for sending as an email.
I'm sorry, but I haven't a clue how to get a string into an NSData ...
3
votes
1answer
1k views
(iphone) get underlying NSData* from UIImage?
I can create UIImage from NSData using [UIImage imageWithdata:] or [UIImage initWithData] method.
I wonder if I can get the NSData* back from an existing UIImage* ?
something on the line of ...
3
votes
2answers
3k views
Display PDF in UIWebView using loadData
I am trying to display a PDF I have stored locally in a UIWebView. This is how I currently attempt to do this:
if (![[NSFileManager defaultManager] fileExistsAtPath:self.url]) {
LOG_ERROR(@"Couldn't ...
3
votes
1answer
673 views
How to initialize an NSData in order to store MAX_SIZE_BUFFER bytes?
I have just realized I lost 30 minutes searching in Xcode NSData Class reference how to do this in objc (sorry I explain this in C as this in the only language which comes without thinking too much):
...
3
votes
1answer
4k views
NSData-AES Class Encryption/Decryption in Cocoa
I am attempting to encrypt/decrypt a plain text file in my text editor. encrypting seems to work fine, but the decrypting does not work, the text comes up encrypted. I am certain i've decrypted the ...
3
votes
1answer
318 views
How do we clear out contents in NSMutatableData
how do were clear an NSMutatableData wihtout using release and then re-alloc/init again to be used again?
I was looking at resetBytesInRange to be set at zero but I am unsure of this. Anyone can ...
3
votes
2answers
971 views
Combining Audio Files as One Properly on iPhone with NSData
I am using AVAudioRecorder to save an audio file every 15 seconds by stopping the recording appending that data to the previously recorder file using a NSMutableData object and using the appendData ...
3
votes
3answers
1k views
Read only a portion of a file from disk in objective-c
I am reading a very large file using a NSInputStreamer and sending them to a device in packets. If the receiver does not get a packet, I can send back to the sender with a packet number, representing ...
3
votes
4answers
4k views
NSData to NString conversion problem
I'm getting an HTML file as NSData and need to extract some parts of it. For that I need to convert it to NSString with UTF8 encoding. The thing is that this conversion fails, probably because the ...
3
votes
2answers
3k views
NSData to NSString converstion problem!
I'm getting an html file as NSData and need to parse it to extract some info. My approach was to convert it to NSString with UTF8 encoding (the html has non english characters, russian for example) - ...
3
votes
2answers
3k views
fails, but no error object is returned. Why?
I'm trying to understand the meaning of the value returned by [NSData writeToFile:options:error:]. The method returns a BOOL, which according to Apple's documentation is "YES if the operation ...