I want to convert NSData to NSString. What is the best way to do this?
I use this code, but the final string returns null
NSString *str = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; NSLog(@"%@",str);
When I see the console, it will print zero.
ios objective-c iphone ipad
Mehul Mistri Jun 20 '11 at 13:33 2011-06-20 13:33
source share