iOS开发代码:从文本文件中读取内容到字符串里
2010-12-18 08:05:42 来源:WEB开发网核心提示:NSError *error;NSString *textFileContents = [NSStringstringWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@”myTextFile”ofType:@”txt”]encoding:NSUTF8St
NSError *error;
NSString *textFileContents = [NSString
stringWithContentsOfFile:[[NSBundle mainBundle]
pathForResource:@”myTextFile”
ofType:@”txt”]
encoding:NSUTF8StringEncoding
error: & error];
// If there are no results, something went wrong
if (textFileContents == nil) {
// an error occurred
NSLog(@”Error reading text file. %@”, [error localizedFailureReason]);
}
NSArray *lines = [textFileContents componentsSeparatedByString:@” ”];
NSLog(@”Number of lines in the file:%d”, [lines count] );
[]
- ››开发学院教你用SQL 语句最快速清空MySQL 数据表的...
- ››iOS Safari支持浏览器内方向感应
- ››ios实现条形码扫描功能
- ››iOS开发知识:Core data操作含有初始数据的sqlite...
- ››iOS iPhone官方参考资料明细
- ››iOS开发基础:Modal View Controller的不同呈现方...
- ››iOS如何处理设备方向变化
- ››iOS开发基础之@property关键字
- ››iOS4下实现UIView动画结束后调用事件的新方法
- ››iOS开发代码:从文本文件中读取内容到字符串里
- ››iOS开发基础-UITableView
- ››iOS 开发者应该知道的 ARM 结构
更多精彩
赞助商链接