NSString *path = [[NSBundle mainBundle] pathForResource:@"hebrewLesson1and2" ofType:@"csv"];
NSArray *rows = [NSArray arrayWithContentsOfCSVFile:path];
NSLog(@"%@", rows);
我的CSV文件包含希伯来字符,我希望将其打印到控制台。目前它们打印出来像“\ U05d6 \ U05b8 \ U05e7 \ U05b5 \ U05df”而不是像“זָקֵן”。
感谢您的帮助。