The NSData class is an apple class for holding generic data. Often used when reading/writing from and to files, and the internet.

learn more… | top users | synonyms

-2
votes
0answers
10 views

ASIFormDataRequest crashed When I use startSynchronous, is anythind wrong? [closed]

When I use ASIFormDataReqequest, i am getting crashed. so, can anyone process this problem, so strange the problem. have been find many ways to explore the reason, but i can't find it. Here is ...
0
votes
3answers
38 views

Downloading images from server and saving into Database

I have to download images and save it into my local database. So I am storing the images in NSData and than inserting it into local database. But there are atleast 50 images coming from the server so ...
0
votes
0answers
8 views

iOS - attaching a PDF file: PDF ok in simulator folder, but corrupted when attached to email on device

Hopefully the title made sense. Here's my situation. I have one PDF created in Pages then exported as a PDF. I then create another PDF within the app. I create the PDF file with this code: - ...
0
votes
2answers
58 views

Objective C: Multiple Downloads

I am trying to make an app that downloads a pdf file from an online server. What I did was I created 3 buttons that has 3 different URLs and save it to the app's sandbox and open it in iBooks. But it ...
0
votes
0answers
37 views

NSString plain encoded with NSASCIIStringEncoding to NSData

I packed an object (NSObject) to (NSData) and then encoded it with (NSASCIIStringEncoding) for sending it to a SQLite database with this code: NSData *data = [NSKeyedArchiver ...
0
votes
1answer
31 views

check downloaded NSData hash

My app downloads small pictures for different objects, and I save them in phone with a unique fileName. I need to check if the image on server has changed. After I download the big pictures, I make a ...
0
votes
1answer
17 views

How to recieve image in a php server from an iphone

I want to send a picture of my app to a web server. The problem is that I'm new to web services. My app sends (via POST) an image as nsdata using json, but I don't have a clue how to convert this ...
0
votes
2answers
35 views

UIImage and BLOB

I need to save an image in the database, that it is on a remote server. For that, i define a BLOB. NSData *imagenData = UIImagePNGRepresentation(self.imagen.image); My problem: when i receive the ...
1
vote
3answers
66 views

Display Image to UIImageView which comes from Server

I am getting strange issue please if get help from anyone then it'll be appreciated. My problem is i am getting only Image names from server through web service for ex: abc.png. Now that image need ...
0
votes
1answer
13 views

Writing orignal image with exif to Document Directory folder from ALAsset object

I want to save alasset imagearray directly to document directory with EXIF i tried PNG conversion, jpeg conversion nothing worked It just creating new image either with jpg or png (loss of exif) I ...
0
votes
2answers
46 views

Objective C: Download PDF and Open in iBooks

I am making an app that downloads a file from an online server and save it to the App's local memory. Now, what I want to do is when you click the "View PDF" button it will open the PDF file directly ...
1
vote
1answer
17 views

Create CGImageRef without caching anything

I need to create thousands of CGImage objects using CGImageSourceCreateThumbnailAtIndex(...). The problem is that when using the simple CGDataProviderCreateWithURL(...) followed by ...
0
votes
1answer
46 views

Compress Large UIImage

so what im doing is compressing an image repeatedly until it fits within a size frame. It it takes to many attempts, give up and later we tell the user the image is to large. My issue is that after ...
0
votes
1answer
51 views

iOS HTTP Post: Request Successful Connection; Nothing happens

I am trying to use a POST request for a User and Password form, to access a webapp beneath it, so that users do not have to fill the fields or press the login key to access their webApps. According to ...
0
votes
3answers
32 views

Objective C: Keep Image After App Termination

I am making an app that downloads files from an online server by clicking an Icon representing the file to be downloaded, then the file will be saved to the app's sandbox. I have managed to do those ...
0
votes
0answers
11 views

AudioQueue from NSData (u-law)

Gents & Ladies, hello again. For the first time I'm having to deal with sound in iOS, and instead of starting out with popular, easy to play sound files, I need to play u-law (mu-law), .Vox ...
0
votes
2answers
59 views

How to check if correct link is given

I'm downloading a XML file from a server and for that I use the following code: NSURL *url = [NSURL URLWithString:link]; NSData *data = [NSData dataWithContentsOfURL:url]; // Load XML data from web ...
1
vote
0answers
52 views

Binary data from file into NSString

I'm building a web server for an iOS app and ran into problem when serving binary files such as images. I need to put the binary data of files into a NSString that I send with the HTTP response ...
-1
votes
1answer
63 views

Objective C: Progress Bar While Downloading [duplicate]

I am making an app that downloads PDF File on button click and save it on locally through the app's sandbox. Now, I want to put a progress bar during the download, how will I able to do that? I have ...
0
votes
1answer
25 views

Accessing UIWebView Information from another Class?

Hi everyone! to start off, my app involves web scraping and javascript injection authentication, since the site I'm trying to access data from, has no api (Don't worry it's legal). With that said ...
0
votes
1answer
50 views

How do i hash the values inside a byte array using MD5?

i have a NSData value ,i find the bytes of that value by using following code Byte *byteData = (Byte*)malloc(24); //byte array int len=[result length]; //find the length memcpy(byteData, ...
0
votes
3answers
69 views

How to fetch details from NSData

I want to fetch specified data html_instructions from the below URL. I could take all data from this URL. But I need the specific html_instructions only. How can I split the data? I used the ...
1
vote
3answers
45 views

Nsmutabledata getting null on append data

I am using below code for uploading image to server. NSData *imageData = [[[NSData alloc]initWithData:UIImageJPEGRepresentation(m_image.image, 100)]retain]; NSString *boundary = ...
0
votes
1answer
18 views

hide registration code from user on iOS

Only a short question here, I would like to know the best place to put my registration code for the user that I get back from the server. I am encrypting it as seen here. //encrypting NSString* ...
0
votes
1answer
24 views

Merging NSData video files into one video file

I have a bunch of video files that I want to merge into one video file, I am using NSMutableData to achieve the task NSMutableData *concatenatedData = [[NSMutableData alloc] init]; for (int i=0; i ...
0
votes
2answers
63 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 ...
0
votes
2answers
25 views

Comparing creation/modification date of NSData objects

At first I have a plist file in app bundle. At some point the file can get updated (downloaded into Documents Folder). Whats the best way to know which file is newer? The mainbundle plist could get ...
0
votes
1answer
53 views

dataWithContentsOfURL and imageWithData take 84% of the whole loading time

these two lines took 40% and 42% (together 84%) of the whole loading time of my app. I tested it with Instruments. NSData *storeImageData = [NSData dataWithContentsOfURL:storeImageURL]; //40% whole ...
0
votes
2answers
37 views

Shared Memory for transfering Data (NSData) in Objective C

Following codes demonstrate shared memory between two process (server & client ) This code transfer characters between two program , but i want to transfer NSData between two programs within this ...
0
votes
0answers
43 views

Append two different formats of nsdata and retrieving the same

I need to append one String value to image and send that image file another device When ever i want to open that image file from another device gallery with using my application i need to separate ...
0
votes
1answer
40 views

Mutable data to string to float - objective-c

float serverTime = [[[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding] floatValue]; NSLog(@"String: %@ Float: %f", [[NSString alloc] initWithData:responseData ...
-1
votes
1answer
44 views

NSCocoaErrorDomain Code=3840 issue while retrieving NSDATA to NSDictionary

I am creating iOS app which uses SQLite DB. I have created Table As: const char *sql_stmt = "CREATE TABLE IF NOT EXISTS ORDERTABLE (ID INTEGER PRIMARY KEY AUTOINCREMENT, ITEMDESC BLOB)"; and then ...
0
votes
1answer
32 views

How to open view controller after data has been loaded into model object?

How can I check if the NSData dataWithContentsOfURLparsing in my secondary thread are finished? When every image is finished I want to open my view controller. Not before. Now I can open my view ...
0
votes
2answers
47 views

UIImage with NSData initWithData is nil

The following code does not seem to load an image. uiTabBarItem = [[UITabBarItem alloc] init]; NSData *datatmp = [NSData dataWithContentsOfFile:@"newsicon.png"]; UIImage *tmp = [[UIImage alloc] ...
0
votes
1answer
25 views

How to tell if match data is empty?

I'm writing a turn based iOS game and right now I am having issues detecting when match data is empty. This is my function to load match data: - (NSMutableArray*) loadMatchData { ...
0
votes
1answer
78 views

sending images to server via json

I am posting data to a server from my ipad using json. But along with my data, i need to be able to send images aswell. I tried to add my image data to a dictionary and parse that into json, but json ...
-1
votes
2answers
46 views

No visible @interface for 'NSData'

I am trying to write a NSData variable to a file as a string using the following code: [filehandle writeData:[myData dataUsingEncoding:NSUTF8StringEncoding]]; And I am getting the error: No ...
-1
votes
0answers
39 views

Parse nested json with nsdictionary and CJSONDeserializer

I have the following JSON snippit and need to access the key and value pairs under "field". Does anyone know ho to accomplish this? I've already searched SO as well as the internet but was unable to ...
0
votes
0answers
28 views

Send Sqlite File Viae Blutooth & Convert Sqlite File From And To NSData in Objective c?

I am Trying T Send Sqlite File Via Blutooth . i Using GameKit i Should Convert Sqlite File To NSData To Send It NSData * data; if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) { ...
0
votes
3answers
116 views

how to retrieve NSdata into NSdictionary from Sqlite in iOS

I am creating iOS app which uses Sqlite DB. I have created Table As: const char *sql_stmt = "CREATE TABLE IF NOT EXISTS ORDERTABLE (ID INTEGER PRIMARY KEY AUTOINCREMENT, ITEMDESC TEXT)"; and then ...
1
vote
2answers
43 views

how to remove nsdictionary from keychain for replacing

I am storing and loading a serialized nsdictionary to the keychain as in this post (Store NSDictionary in keychain), but I need to be able to update/edit the dictionary contents so I would like to ...
0
votes
3answers
30 views

How to convert NSData to NSMultableArray

I have a question how to conver NSData to NSMultableArray I recive the data from JSON and I need to set that data into the Table View. How to do that? Above is the example of the JSON: ...
0
votes
0answers
80 views

Save UIImage -> NSData to Core Data binary

I want to store an image I picked with the UIImagePickerController from the camera to CoreData. The column is a binary type with "Allows External Storage". The method I want to save: ...
1
vote
1answer
69 views

NSJSONSerialization returning nil

{"User":{"id":"42","name":"martin"}} Converting my NSData to NSString returns this JSON which seems completely valid, however the method: [NSJSONSerialization isValidJSONObject:data] is saying ...
0
votes
0answers
230 views

ASP.NET MVC deserializing large JSON data provided by iOS iPad App

I have a native iOS iPad app which is creating a JSON string and passing it to an ASP.NET MVC controller. The iOS app creates the raw JSON by creating a very large base64 string from some image data. ...
0
votes
0answers
94 views

AES encryption problems in iPhone (Objective-c)

Help me please with encryption in iOS. I have working code at JAVA: public String encrypt(String input, String base64hashedPassword) throws GeneralSecurityException { byte[] crypted; byte[] ...
2
votes
1answer
110 views

iOS Hardware encryption vs own implementation

I am developing an app that stores PDF files. These files should be stored secure, i. e. encrypted. I also found some libraries that extend NSData with AES en/decryption. But then I read, that iOS ...
0
votes
0answers
10 views

how to create raw NSData for uiimage

I want create a blank white UIImage from NSData.Is there a method to create raw NSData (PNG data size)for UIimage to create with imageWithData function. Thanks,Guy.
0
votes
0answers
19 views

Why information not correct save in NSData?

I want save cookii in NSUserDefaults NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; NSData *data = [NSKeyedArchiver archivedDataWithRootObject:self.cookies]; ...
0
votes
1answer
72 views

iOS loading Base 64 encoded data in webview

I am trying to load base64 encoded data in a webview.Following is the code i am using NSDictionary *fileFormatDic=[[NSDictionary ...

1 2 3 4 5 22