I got NSMutableData from the server and now I want to convert it to NSString. Any ideas on how to do this?
You can use the initializer initWithData: ::
initWithData:
[[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];
Change the encoding to the original data.