获取项目下文件的路径 pathForResource文件名参数 ofType文件扩展名
NSString * path = [[NSBundle mainBundle]pathForResource:@"first" ofType:@"txt"];
把文件路径转换成NSURL
NSURL * usr = [NSURL fileURLWithPath:path];
获得文件内容赋值到str
NSString * str = [NSString stringWithContentsOfURL:usr encoding:NSUTF8StringEncoding error:nil];