How-To: Convert NSData to NSString
Jul.16, 2009 in
iPhone Development
How do you convert an NSData object into it’s string representation? Should be easy, right? It is, when you know how…
NSString* theString = [[NSString alloc] initWithData:theData encoding:NSASCIIStringEncoding];
Tags: iphone, objective-c

July 10th, 2010 at 2:16 am
simple and easy working solution. Thanks.