0
votes
2answers
64 views

Passing object/NSData between iOS devices

I'm creating a game, turn based, and I was thinking of using Game Center to handle it, but the passed game-object is evidently max 64kb. Is there another way to pass objects between devices for this ...
2
votes
1answer
127 views

Get the first 32 bit (4 byte) number from NSString

My NSString looks like this: 42949672951365185178 It is a concatenation of a 32 bit number 4294967295 and a timestamp 1365185178. I need to split the two so that I can get the number and the ...
0
votes
1answer
39 views

How can 2 NSData objects output the same HEX but be different when converted to char array?

So basically I have some NSData objects and a method which looks like this: + (NSData *)outputData:(NSData *)data andThisData:(NSData *)secondData { char cData[data.length]; [data ...
0
votes
0answers
20 views

I saved AVAudioPlayer speech to a mp3 file. But that mp3 file can not play into iTunes

I saved AVAudioPlayer speech to a mp3 file. But that mp3 file can not play into iTunes.Its only play into VLC or other media player. Why its not play into iTunes? and how can I save this mp3 file as a ...
0
votes
1answer
135 views

UIImage to raw NSData / avoid compression

I have my own image downloader class, it holds a queue and downloads images one (or a certain amount) at a time, writes them to the cache folder and retrieves them from the cache folder when ...
0
votes
1answer
148 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
0answers
56 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 ...
2
votes
2answers
187 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 ...
0
votes
0answers
36 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
2answers
205 views

Convert byte array received from web service into PDF in IOS

I have received byte array from web service call. I am able to generate the PDF from that but its displays error "The file “abc.pdf” could not be opened. It may be damaged ".
-1
votes
4answers
204 views

size of UIImage stored as NSData?

Am i able to get the size (CGSize) of a UIImage stored as NSData without using [UIImage imageWithContentsOfFile:];? Being able to do this would make my code run faster.
0
votes
1answer
217 views

How to Transfer NSData in UDP?

I have been working on video chat application, We have developed same app for windows and android also, Now I am trying to do for IOS and communicate between those. For that I have captured raw video ...
1
vote
1answer
194 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
348 views

Xcode (Cocoa) how to write byte to NSData

Xcode... I want to write one byte (1) to NSData. It seems very simple but im not able to find the proper link how to do it. I try to do that using unsigned char. But that stores the hex value.
0
votes
2answers
309 views

NSURL Unrecognized Selector

I have a function in my class: -(void)receiveFileName:(NSNotification *) notification { [self dismissViewControllerAnimated:YES completion:nil]; NSString *selectedFileURL = [notification.userInfo ...
-4
votes
1answer
87 views

How do I determine if an NSData object contains a specific HTML tag? [duplicate]

Possible Duplicate: parsing NSData object for information I have a NSData object. I want to see whether it contains an HTML tag or not. How can I parse the NSData object to get this ...
0
votes
1answer
686 views

How to Load NSData into an AVPlayerItem?

This is a follow-on question from my post about How to Encrypt mp3 Files in iOS. How would I go about loading a track into an AVPlayerItem using NSData rather than a file path/URL? Thanks
0
votes
2answers
97 views

How to save Core Data to use later?

Right now on my iPhone application I'm saving a large chunk of data from a NSData object to NSUserDefaults. I know that's not the best approach because NSUserDefaults is meant only to store small ...
3
votes
3answers
231 views

Difference between checking for a file's existence with NSData or NSFileManager

I'm trying to check if a file exists. If I use this: NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:filePath]]; if (data == NULL){ ... } I always get NULL. Than ...
2
votes
3answers
300 views

How to get a slice data of a huge video file

I wanna load a video file into NSData,if I use dataWithContentsOfFile:,it will spend lots of memory when the file is too huge. How can I get a specific data of a file with offset and length. I need to ...
0
votes
1answer
2k views

Iterate through NSData bytes

How can I iterate through [NSData bytes] one by one and append them to an NSMutableString or print them using NSLog()?
0
votes
2answers
276 views

UIImage with NSData - image compression dependancy

I understand the need of image compression while downloading images when connected to a 3G network, but I am getting really bad looking images... I'm caching downloaded images and I realized that the ...
0
votes
0answers
553 views

Convert Byte Array to PDF File IOS

I have the following code to call the webservice that returns byte[] for PDF File. Is there something wrong ? it is generating the corrupt PDF file. More Details IOS send request for the pdf file ...
0
votes
1answer
487 views

Objective C HTML Request

I am just starting out in Xcode and wanted to try and make a simple app where you press a button and it creates a html post request and returns the html in a string i can't then fiddle with. I realise ...
2
votes
1answer
2k views

NSData dataWithContentOfFile returning nil?

I have a file path, and I need to get the data of the file in NSData. I am using: NSError *err = nil; NSData *d = [NSData dataWithContentsOfFile:file options:nil error:&err]; NSLog(@"error: %@", ...
0
votes
1answer
392 views

Checking whether an NSConcreteMutableData instance is empty

The result of FBConnect's userInfo is empty sometimes; the data type is NSConcreteMutableData, which NSLog shows as <>. How do I check for empty or nil here? so Far I have tried nil and [NSNull ...
1
vote
0answers
221 views

Getting ongoing recording data segments from AVAudioRecorder

My problem is as follows: I need to capture every 320 bytes of raw audio data. I do this by using an NSTimer that fires a method every 0.02 seconds - that is because i need to record 8000Hz and 16bit ...
8
votes
5answers
4k views

How can I convert my device token (NSData) into an NSString?

I am implementing push notifications. I'd like to save my APNS Token as a String. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData ...
0
votes
2answers
516 views

How to convert properly from NSData to NSString?

I'm getting weird NSString value after performing a conversion. For example, I have one byte with value 2 (00000010) that is stored in response. I tried both NSString initWithData and initWithBytes ...
0
votes
2answers
525 views

How to show content of NSData in bits?

I have NSData and I need to view its content in pure bits. Tried NSLog [NSData description] but it returns NSString. Any suggestions?
1
vote
1answer
131 views

Difficulty with accessing list of URLs in XML file

I am trying to make an app that plays MP3 songs. My program flow is like this: I have an XML file here in my website: http://jeewanaryal.web44.net/SongsXML/songsListXML.xml. It has song titles and ...
0
votes
2answers
376 views

Converting Data to Text and Displaying in a UITextField

I have an NSData abject called objNSData, and I can convert a string into this NSData object. I cannot figure out how to convert an NSData back to a string, is that even possible? I know it can be ...
0
votes
3answers
1k views

Convert a UIImage into NSData BUT stay as a GIF file

I have a UIImage which is a GIF file. I need to make it make it into an NSData object. But it needs to stay a GIF so I can't use UIImageJPEGRepresentation. Any ideas?
1
vote
3answers
548 views

Using substringFromIndex: with NSData

I am working on an NSData object that is 4840 bytes, and want to omit the first 20 bytes and fetch the rest. Are the substring methods substringFromIndex: / substringToIndex: applicable to NSData?
0
votes
1answer
284 views

Converting rtf data in an NSData object to a NSString object

I'm working on iOS and I want to read rtf data thats in an NSData (actually its an attribute in a core data entity). I'm using the following code: NSString *temp = [NSString ...
0
votes
2answers
627 views

Read RTFD data in IOS

I have RTFD data in NSData objects in IOS that I need to read. In MacOSX I just used to read them with NSAttributedString, but now I know that they are not supported in IOS. attribString = ...
6
votes
2answers
1k views

Is it okay to call +[NSData dataWithData:] with an NSMutableData object?

Is it a problem for me to do the following to change a mutable data instance immutable? NSMutableData *mutData = [[NSMutableData alloc] init]; //Giving some value to mutData NSData *immutableData = ...
0
votes
0answers
210 views

NSData to UIImage not working

I am developing an app for iPad, trying to get an image sent by a windows application. I know that i receive the data properly, the size of the packets matching. Unfortunately, when i try to put my ...
28
votes
2answers
21k views

convert UIImage to NSData

i am using this code in my app which will help me to send a image. however i have a image view with a image.i have no file in appbundle but have the image in my side.how can i change the below ...
3
votes
3answers
573 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 ...
2
votes
1answer
7k views

Creating a base-64 string from NSData

How is it possible to get a base64 string from an NSData instance?
0
votes
1answer
280 views

NSData needs to be updated

I am parsing HTML using hpple. so now I want my text to be updated as the user touches the next button. my code looks something like this NSURL *ur = [NSURL URLWithString:[NSString ...
1
vote
1answer
958 views

Encoding/Decoding using NSData+Base64.h

I have some encrypted data that I'm converting to a base64. I am having difficulty converting that string back into NSData that I can then use for decryption. NSData *encryptedData = [self ...
0
votes
3answers
2k views

Mutable Copy of NSData in NSMutableDIctionary causing memory leak

In my code, I define a NSDictionary in viewDidAppear like this: dataDictionary = [[NSMutableDictionary alloc] init]; then later in a loadData method, I load a mutable copy of the NSDictionary ...
3
votes
5answers
2k views

Can't find .js file in my mainBundle?

This is driving me crazy as I cannot figure out what in the world is going on. I load up files form you main bundle all the time, xml files, html files, etc. But, now I am trying to get the contents ...
0
votes
1answer
585 views

Failing to POST NSData of PDF to server

I have an iPad application in which I need to send a server a PDF file, alongside two POST variables, a user ID and a job ID. I am using the code below to do this: NSData *pdfData = [NSData ...
2
votes
1answer
243 views

How do I check for an error after [NSData dataWithContentsOfMappedFile:]?

I have this code in my project: id mappedData = [dataWithContentsOfMappedFile: path] Obviously, if mappedData is nil it didn't succeed. But how can I get details about why it didn't succeed? ...
1
vote
2answers
1k views

convert .zip file into NSData

Hey, Is it correct to initialize an NSData with a zip file? I want to convert a zip file into NSData and construct another file with the data (in simple language 'copy it'). I have the code as: NSURL ...
0
votes
1answer
563 views

Object changes from NSMutableArray to NSData to NSString

I have a program which works normally. Then I downloaded some code from http://github.com/matej/MBProgressHUD to show a progress meter when doing something. This is the code that makes the progress ...
0
votes
2answers
3k views

NSKeyedArchiver archivedDataWithRootObject:

Is the parameter for NSKeyedArchiver archivedDataWithRootObject: supposed to be the array I am trying to save, or the array converted into NSData?

1 2