NSString cString is Deprecated. What is the alternative? NSString cString is Deprecated. What is the alternative? objective-c objective-c

NSString cString is Deprecated. What is the alternative?


  1. Get the raw bytes from the string.
  2. Get the length of those bytes in the UTF8 encoding.
  3. Create the NSData object using the +dataWithBytes:length: method.

const char *rawBytes = [testXMLDataString UTF8String];const NSUInteger length = [testXMLDataString lengthOfBytesUsingEncoding:NSUTF8StringEncoding];NSAssert(length > 0, @"Couldn't convert to UTF-8");NSMutableData *testXMLData = [NSMutableData dataWithBytes:rawBytes length:length];[webData setData:testXMLData];