I received an NSMutableData from a server and now I want to convert it to an NSString. Any ideas about how to do this?
You can use the initWithData: initializer:
initWithData:
[[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];
Change the encoding to that of the source data.