Is there any way to parse JSON with single quotes like
{'lat': 0, 'lng': 0}
with JSONModel?
JSONModel
Ended up with @CouchDeveloper advice.
you could replace the wrong chars:
NSString *json = [yourJSONString stringByReplacingOccurrencesOfString:@"'" withString:@"\""];
and then you can handle it as corretc JSON :-)
Ended up with @CouchDeveloper advice.