使用db类库 玩转sqlite

前端之家收集整理的这篇文章主要介绍了使用db类库 玩转sqlite前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

//获取文本内容

- (NSArray *)getTextLine:(NSString *)resource

{

NSString *fileName = [[resource componentsSeparatedByString:@"."] objectAtIndex:0];

NSString *extension =[resource pathExtension]; //获取结尾

NSString *filePath = [[NSBundle mainBundle]pathForResource:fileName ofType:extension ];

NSError *error = nil;

NSString *filePath_text = [[NSString alloc]initWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:&error ];

NSLog(@"error : %@",error);

NSArray *file_lines = [NSArray array];

if (!error) {

file_lines = [filePath_text componentsSeparatedByString:@"\n"];

}

return file_lines;

}

原文链接:https://www.f2er.com/sqlite/201964.html

猜你在找的Sqlite相关文章