我想从每天更新的网络服务器解析 csv。我正在使用来自此链接https://github.com/davedelong/CHCSVParser的 csvparser ,我正在使用以下代码:
NSError *err = [[[NSError alloc] init] autorelease];
NSString *lunchFileURL = [[NSString stringWithFormat:@"http://www.somewhere.com/LunchSpecials.csv"] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *lunchFile = [NSString stringWithContentsOfURL:[NSURL URLWithString:lunchFileURL] encoding:NSUTF8StringEncoding error:&err];
CHCSVParser *p = [[CHCSVParser alloc] initWithContentsOfCSVString:lunchFile usedEncoding:&encoding error:nil];
我收到此错误:
No visible @interface for 'CHCSVParser' declares the selector 'initWithContentsOfCSVString:usedEncoding:error:'
我检查了这个链接Load remote csv into CHCSVParser 并且它不起作用。我是 ios 的菜鸟,请让我知道如何解决这个问题。非常感谢帮助。在此先感谢。