iOS开发将txt文件拉入xcode中 如何找到并且读取

首先找到绝对路径

NSString *resourcePath = [[NSBundle mainBundle] pathForResource:@"dizhi_quanqiu" ofType:@"txt"];
NSString* content = [NSString stringWithContentsOfFile:resourcePath encoding:NSUTF8StringEncoding error:nil];
 NSDictionary *dic = [self dictionaryWithJsonString:content];

iOS开发将txt文件拉入xcode中 如何找到并且读取_第1张图片
屏幕快照 2017-05-02 下午2.20.51.png
屏幕快照 2017-05-02 下午2.21.29.png

你可能感兴趣的:(iOS开发将txt文件拉入xcode中 如何找到并且读取)