我现在正在解析NSJSONSerialization
NSData *jsonData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"url"]];
NSError *jsonError = nil;
id jsonObject = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:&jsonError];
NSDictionary *jsonDictionary = (NSDictionary *)jsonObject;
[self setTableData:jsonDictionary];
但它不会解析我的 JSON,因为当我从 JSON 中删除“ ü”时,JSON 中的特殊字符(如字母“ü”)可以正常工作。我尝试了上面的代码并且:
options:utf8...
有谁知道我该如何解决这个问题?