当尝试像这样使用 CHCSV 解析器时:
#import "CHCSVParser.h"
....
- (IBAction)hi:(id)sender {
NSString *path = [[NSBundle mainBundle] pathForResource:@"nood" ofType:@"csv"];
NSError *error = nil;
NSArray *rows = [NSArray arrayWithContentsOfCSVFile:path encoding:NSUTF8StringEncoding error:&error];
if (rows == nil) {
//something went wrong; log the error and exit
NSLog(@"error parsing file: %@", error);
return;
}
}
我得到错误:
选择器 arrayWithContentsOfCSVFile:encoding:error: 没有已知的类方法:
我已包含 CHCSV 标头,但仍然会发生此错误。此问题与此问题完全相同,但从未得到回答,因此请不要将其标记为重复。