Here are the code I tried to convert NSData to NSString but the program return \"Program received signal:SIGABRT\".
NSString *string= [NSString stringWithUTF
Use this code
NSString* myString; myString = [[NSString alloc] initWithData:nsdata encoding:NSASCIIStringEncoding];
also see this tutorial..
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/Reference/NSString.html
:)