码迷,mamicode.com
首页 > 其他好文 > 详细

UITextView上显示txt文件中的文字

时间:2014-10-11 12:36:05      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   for   文件   sp   div   

 

效果图:

 

bubuko.com,布布扣

 

代码:

 

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    
    UITextView *textView = [[UITextView alloc]initWithFrame:CGRectMake(0, 100, 320, 200)];
    textView.backgroundColor = [UIColor redColor];
    textView.textAlignment=NSTextAlignmentLeft;
    NSString * str = [NSString stringWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"脑筋急转弯" ofType:@"txt"] encoding:NSUTF8StringEncoding error:nil];
    textView.text = str;
    [self.view addSubview:textView];

}

 

bubuko.com,布布扣

UITextView上显示txt文件中的文字

标签:style   blog   http   color   io   for   文件   sp   div   

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

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