In one of my project I have used google place api and get the address when tap on map, from google some time came address with special charter like 'Č' and other so that while parsing into JSON
data is truncated,before send the string with data I am converting it to UTF8
NSData *requestData = [NSData dataWithBytes: [requestString UTF8String] length: [requestString length]];
[request setHTTPBody:requestData];
Is there any other way to converting data rather then UTF8
?