我如何使用CHCSV解析器?

时间:2012-10-10 04:36:05

标签: objective-c csv

我是编程世界的新手,也是学习iPhone应用程序开发的人。对于我的一个应用程序,我正在从Yahoo finance下载CSV数据。我想把它放在字典里。经过一些搜索,我找到了CHCSV解析器。我的问题是如何使用它?

我将文件复制到我的项目中并尝试了不同的方法。我知道我的做法有点傻。作为这些事情的新手,如果有人可以帮助我,我会非常感激。在下面的代码中,我通过传入CSV文件初始化CHCSV对象。我想parse方法是正确的方法。在那之后,我不知道如何从中获取字典。

#import "ifinance5ViewController.h"
#import "CHCSV.h"

@implementation ifinance5ViewController

@synthesize button1;

-(IBAction)buttonpressed:(UIButton*)sender{
    NSString *locfile = @"/Users/---/Desktop/array.csv";
    NSError *anError = nil;

    [CHCSV *csvfile]=[[CHCSV alloc]initWithContentsOfCSVFile:(NSString *)locfile usedEncoding:(NSStringEncoding *)NSASCIIStringEncoding error:(NSError **)anError];
    [csvfile parse];
}

0 个答案:

没有答案