51

I received an NSMutableData from a server and now I want to convert it to an NSString. Any ideas about how to do this?

pnuts
  • 56,678
  • 9
  • 81
  • 133
Chilly Zhong
  • 16,633
  • 23
  • 76
  • 103

1 Answers1

79

You can use the initWithData: initializer:

[[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];

Change the encoding to that of the source data.

codelogic
  • 69,114
  • 9
  • 58
  • 54