码迷,mamicode.com
首页 > 移动开发 > 详细

【读书笔记】iOS-读取文本文件

时间:2015-08-25 21:15:20      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

一,文本文件的内容。

技术分享

 

二,工程目录

 

技术分享

 

三,ViewController.m

技术分享
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    //读取文本文件
    [self readFromText];
}
#pragma -mark -functions
//读取文本文件
-(void)readFromText
{
    NSError *error;
    NSString *textFieldContents=[NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"chenlihua" ofType:@"txt"] encoding:NSUTF8StringEncoding error:&error];
    NSLog(@"--textFieldContents---%@-----",textFieldContents);
    if (textFieldContents==nil) {
        NSLog(@"---error--%@",[error localizedDescription]);
    }
    NSArray *lines=[textFieldContents componentsSeparatedByString:@"\n"];
    NSLog(@"number of lines in the file:%ld",[lines count]);
}
技术分享

 

四,输出如下图所示:

 

技术分享
2015-07-29 22:12:32.692 读取文本文件[1362:70871] --textFieldContents---1
2
3
4
5
6
7
8
9
-----
2015-07-29 22:12:32.692 读取文本文件[1362:70871] number of lines in the file:10
2015-07-29 22:16:09.573 读取文本文件[1362:73057] Terminating since there is no system app.
技术分享

 

参考资料:《iOS数据库应用高级编程(第2版)》

【读书笔记】iOS-读取文本文件

标签:

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4758541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!