当前位置: 首页 > 工具软件 > CSV.swift > 使用案例 >

iOS读取CSV文件

赫连实
2023-12-01


-(void)readCSVData{
    NSString *path = [[NSBundle mainBundle] pathForResource:@"values" ofType:@"csv"];
    NSString *fileContents = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
    //首先取出每一行的数据
    _allLinedStrings = [fileContents componentsSeparatedByString:@"\r\n"];
    //NSLog(@"%@",_allLinedStrings);
}


 类似资料: