1
vote
0answers
55 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 ...
0
votes
1answer
42 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
vote
3answers
129 views

Retrieving string from NSData stored in local database

Note: I have stored NSData in local database. I want to use it back from local database. But as it is stored in local database as text ,facing issue in converting back it into NSData. strDbData is ...
0
votes
0answers
43 views

How to Format NSString with Unicode

I'm getting the text from my plist that has unicode characters i.e. - ( ) whenever I NSLog it, it always returns null. How can I convert it so it doesn't appear null? Here's some code: NSString ...
1
vote
1answer
48 views

iOS AES Data/String conversion

I have used previously addressed hints on AES encryption on iphone. NSString *mystr= [[self encryptString:[message valueForKey:@"message"] withKey:@"password"] hexadecimalString]; NSData ...
0
votes
0answers
64 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 ...
0
votes
1answer
178 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 ...
0
votes
1answer
99 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 ...
2
votes
1answer
148 views

Base64 issue in NSMutableURLRequest POST message?

I'm having communcation issues between my app and the server. I'm using RNCryptor to encrypt a message, which I then base64 encode and transfer to the server in the request. This is done in both the ...
0
votes
0answers
70 views

Convert hybrid NSData to NSString

My requirement is to convert an NSData stream that is written in 2 formats: hex bytes and normal string data (not sure what is correct name for it but if you have a look you can know). I am trying ...
0
votes
5answers
479 views

How to Convert NSData to NSString

I know this has been asked quite before, and I already followed couple of approaches, but they don't work. Following is what I already tried: NSString *newStr = [NSString ...
0
votes
1answer
60 views

Why base64Encoding is not supported by iOS6?

I have converted a UIImage in to NSData and now i want to convert that NSData in to NSString so that i can send it to a server. Here is the code UIImage *img=mainImage.image; NSData ...
1
vote
0answers
86 views

NSData to NSString conversion failing

I have an encrypted String that is returned by a Java web service to my iOS app. I am able to decrypt it to a NSData object on the iOS side, but when I try to convert it to a NSString I always get a ...
0
votes
1answer
117 views

How to store and retrieve multiple NSStrings in NSData

Is there any way I can store and retrieve multiple text strings in an NSData object? I am looking into external accessories and just wondering how multiple arbitrary parameters are transmitted to and ...
0
votes
1answer
282 views

UIImage > NSData > NSString fail

I know this question has been questioned many times, but my problem is a little different. I have an image (shared.image) and I want to upload the data to a server. This is the code (the img: bit is ...
1
vote
1answer
108 views

Difference between initWithData and initWithBytes of NSString

I'm confused with the use of the following methods of NSString initWithData:encoding: Returns an NSString object initialized by converting given data into Unicode characters using a given ...
1
vote
1answer
60 views

NSString that contain lots of null termination? [duplicate]

Possible Duplicate: In ios 3des encryption contain lots of null termination.when i convert NSData to NSString , it will endup to first null termination? when i convert encrypted NSData to ...
2
votes
0answers
451 views

iOS:detect correct encoding of NSData

I hava a NSData object which represents a NSString object. I use -[NSString initWithData:encoding:] to get the string. Now the problem is how do I know the correct encoding type? Thanks. Edited: I ...
0
votes
0answers
91 views

Decode data from Base64 and represent it in hex format

//input Data in base64 format NSData *SB64Data = [[NSData alloc]initWithData:[SHashArray objectAtIndex:0]]; //Decode The string from Base64 //Represent in hexademical format(also in nsstring) ...
1
vote
2answers
190 views

How to get data in iOS pasteboard to stay multiple access

What I'm trying to do currently is basically I have 2 apps and based on if the other one is installed or not, behave in a certain way. I came upon Pasteboard for inter-app communication so I thought I ...
0
votes
1answer
124 views

How to convert audio data into NSString in iOS?

I would like to convert audio data into NSString. I have audio data and it is not bull. But when i convert audio into NSString that converting string is null. I am using following code..... ...
1
vote
3answers
115 views

NSData to NSString conversion

I found this method to convert an NSData to an NSString object. NSData *data = //some data NSString *string = [NSString stringWithFormat:@"%@", data]; How will the data be decoded? Is ...
0
votes
3answers
104 views

How to convert NData populated with hex values to NSString

I have a NSdata object that is populated with a bunch of information thats formated in hex.. I am trying to convert it into its proper string representation but am struggling to have any success. One ...
1
vote
1answer
699 views

How to change NSString encoding

I have an NSString that looks like this. Citroën Which is ASCII for Citron. So in an effort to try and convert this NSString to its correct form like this string = [dict ...
1
vote
2answers
807 views

Objective-C Convert NSData to NSString

Here are the code I tried to convert NSData to NSString but the program return "Program received signal:SIGABRT". NSString *string= [NSString stringWithUTF8String:[data bytes]]; OR NSString ...
0
votes
1answer
58 views

I want “tokenData” equal “deviceToken” from “token”

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { NSLog(@"%@", [NSString stringWithFormat:@"%@", deviceToken]); ...
0
votes
1answer
140 views

Casting NSString to NSData

Is there any way to store a NSString in a NSData maintaining the SAME data? Example (this is fine, but it's not what I need): NSString *tmpString = @"Hello World!"; NSData *nsdataString = ...
0
votes
2answers
228 views

Unable to show thumbnail left of Table Cell in iOS

I have seen several posts on this here at SO but those solutions don't seem to work for me. Perhaps it's because I'm getting the image URL via JSON. All other text fields in JSON are coming through ...
2
votes
1answer
196 views

How to define my string and type of encoding. NSString -NSSdata

I am trying to post a string with 2 values to a URL. To define my string I am using: NSString *post = [NSString stringWithFormat:@"...."]; NSData *postData = [post dataUsingEncoding: .... ...
0
votes
1answer
111 views

How to convert a string that contains HTML encoding characters to NSData?

I need to convert this string "{ "name":"Tsubasa En La Liga", "description":"T\u1ebfp sau b\u1ed9 tsubasa El classico\u2026anh \u0111\u00e3 tr\u1edf l\u1ea1i, g\u1eb7p l\u1ea1i nh\u1eefng b\u1ea1n ...
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
1answer
104 views

Binary representation of NSString

I need to someone to send me binary data via NSStream and I will convert it into NSString on my end. What's the binary representation that they need to know (byte size, byte order) in order for me to ...
1
vote
1answer
236 views

How to convert NSData that is encoded with AES256 to base64?

I am trying to convert an NSData object that has been encrypted with AES256 encryption to base64 NSData object. I am under the impression that I can not directly convert a NSData object that has been ...
0
votes
0answers
120 views

Split NSString into array of Japanese characters

I need to write a function that will split an input string to array of character (in Japanese) Currently i do as bellow, but it not work as expected. the array has some element with more that one ...
0
votes
1answer
401 views

Create NSData by interpreting NSString as hex digits

Edit1: rob mayoff'answer is wonderful.And this is my own: -(NSData *)change:(NSString *)hexString { int j=0; Byte bytes[[hexString length]]; for(int ...
0
votes
2answers
2k views

convert base64 decoded NSData to NSString

I'm trying to encode and decode base64 data. but while decoding the base64 data, it returns bunch of hex values, but i couldn't display or printout using NSlog to the original readable strings. The ...
1
vote
1answer
220 views

Conversion from NSData to NSString is Truncating Where Multi-Byte UTF8 Characters Are Used

In the code below, I am losing the last character in my string. NSString *testString = @"— choose a category —"; NSData *testData = [NSData dataWithBytes:[testString UTF8String] ...
0
votes
1answer
93 views

GKSession: Sending an Array of Strings

I'd like one peer in a session to send an array of strings to another, connected peer. Is there a way to convert such an array into NSData or do I need to send the strings one after another? Thanks ...
1
vote
1answer
575 views

NSString into NSMutableData without conversion to NSData

my problem is the following. I would like to encapsulate a NSString in a NSMutableData object. But I would like to do it together with other items and without first encapsulating it into a NSData. ...
2
votes
1answer
307 views

Why can't I create a string in lldb?

Specifically, why doesn't this work? (lldb) po [NSString stringWithCharacters:(char*)[data bytes] length:(int)[data length]] error: Couldn't execute function; result was eExecutionDiscarded There ...
0
votes
0answers
177 views

NSData Cache disable doesn't work

I have googled many sites and also found a general solution for this problem, but the general solution doesn't work for me. It seems that it doesn't even work for most others. If you need to load a ...
0
votes
1answer
139 views

NSString initWithData return string value in extra quotes, how to fix it?

Everyone, Method initWithData of NSString return me the value in extra quotes, how can I fix it ? For example: NSString *result = [[NSString alloc] initWithData:self.receivedData ...
1
vote
0answers
168 views

Converting nsarray to nsdata to nsstring to use in label

Help from the more experienced Obj C coders will be greatly appreciated as I've been stuck on this for a few days, and I believe the code is 'close'. I'm creating a list of names from the users ...
0
votes
1answer
78 views

How to convert russian text from NSData bytes?

I have a problem. How to convert russian text from NSData? NSURL *url = [NSURL URLWithString:@"http://pda.somesite"]; ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url]; [request ...
2
votes
1answer
153 views

Increasing Length of NSData

Basically, I have an NSString of 46 characters which i convert to NSData. I need to pad the string to 48 characters. It does not work via just adding ' ' to the end of the NSString. So, i just ...
3
votes
3answers
108 views

How can I convert * )xÿª5c’√K’Rk¬É* to plain text in objective C?

Please check here is my code int asciiCode = @"29 78 D8 BB 35 12 63 D5 C3 4B 18 D5 52 6B C2 83"; NSString *strings = [NSString stringWithFormat:@"%c", asciiCode]; NSLog(@"%c",strings); } if the ...
0
votes
1answer
114 views

Objective-C File Creation Error

I am making a simple command line tool where the user enters a username and password (I don't care about encryption as this is only an exercise) and their age and this data is written to a file. This ...
0
votes
1answer
296 views

Archived NSData, isEqualToData: and Empty Strings

I have a custom object containing several NSString objects, some ints and a few bools. I am using NSKeyedArchiver to archive a copy of the object into an NSData object. The user than makes changes ...
4
votes
1answer
819 views

Show NSData as binary in a NSString

I have a binary file (file.bin) in the resources folder, I want to read it and show it as binary. The idea its to put the binary information into a array, but, at first, I'm trying to show it in a ...
0
votes
0answers
46 views

Displaying symbols in Label

I m having a trouble in displaying strings. I m using some symbols as below, m² represents square meters Ω represents ohms I want to display this symbols in label, currents its displays "Ω" or ...

1 2 3