I want to convert NSData to NSString..What is the best way to do this?
I am using this code but the final string returns null
NSString *str = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",str);
When I see console It will print null.
See Question&Answers more detail:os