Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Converting NSData to NSString in Objective c

I want to convert NSData to NSString..What is the best way to do this?

I am using this code but the final string returns null

NSString *str = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; NSLog(@"%@",str); 

When I see console It will print null.

like image 910
Mehul Mistri Avatar asked Jun 20 '11 13:06

Mehul Mistri


1 Answers

Use below code.

NSString* myString; myString = [[NSString alloc] initWithData:nsdata encoding:NSASCIIStringEncoding]; 
like image 103
Jhaliya - Praveen Sharma Avatar answered Sep 30 '22 00:09

Jhaliya - Praveen Sharma