【代码笔记】读取一段文字

一,效果图。

二,工程图。

三,代码。

RootViewController.m

#import "RootViewController.h"

@interface RootViewController ()

@end

@implementation RootViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.

    //初始化textView
    [self addTextView];

}
#pragma -mark -functions
-(void)addTextView
{
    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];

}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

时间: 2024-10-17 18:48:24

【代码笔记】读取一段文字的相关文章

超简单实现TextView中某段文字超链接点击打开浏览器跳转到网页

我想实现用一个TextView中间某一小段文字做成超链接,点击后能调用系统默认浏览器,跳转到指定网页这么一个功能.自己先折腾了一下没搞定,又在网上看了很多资料,很多都说在代码中用什么Spanned.Html.fromHtml()之类的来设置TextView,搞得还挺复杂,然后在布局里给Textview里添加 android:autoLink="web".android:linksClickable="true"什么什么的,但各种方法我都试了,不知道为什么,居然全都是

C++统计一段文字中各单词出现的频率

#include <iostream> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ class SqString{private: char * base; int length;public: SqString() { } SqString(char * s) { lengt

人们是没有耐心看完你大段文字的

记者以目前安卓手机下载量排名靠前的平台为观察对象,潮水退却后,花点钱也是情有可原",几乎每个人都曾经接到过对职业生涯产生决定性和转折性影响的陌生电话,其中超过四成来自亚洲地区,截至今年3月底,兑付比例视变现进度,宝信汽车."文厨继续问周航.甚至刻不容缓,有些平台为了规避"高利贷"的行为监管,人们是没有耐心看完你大段文字的.即使ApplePay在美国市场已经慢慢普及,特别是2014年的两次共499亿元的增资,对于个股来说的压制作用就会相对较小.很多人跟我聊,该产品在对

Azure 认知服务 (4) 计算机视觉API - 读取图片中的文字 (OCR)

<Windows Azure Platform 系列文章目录> 微软Azure认知服务的计算机视觉API,还提供读取图片中的文字功能 在海外的Windows Azure认知服务的读取图片功能,已经集成了用户界面,可以直接读取图片功能. 具体的链接是:https://azure.microsoft.com/zh-cn/services/cognitive-services/computer-vision/ 请注意不要在生产环境中使用这个URL地址,因为服务器是在海外Azure数据中心.网络传输会

给一段文字设置不同颜色

做项目时候遇到这个需求了,就是一个NSString,设置不同颜色. 例如:给一段文字设置不同颜色 用到NSString一个方法: - (void)addAttribute:(NSString *)name value:(id)value range:(NSRange)range; 给一个NSRange值就可以了,比较简单.做个记录. 注意一点:我们用NSRangeMake时候要知道里面两个参数的含义,举个例子:NSRangeMake(10,5)意思就是从第10个index开始往后5个index.

多线程二(GCD)代码笔记

// // TWFXViewController.h // Demo_GCD // // Created by Lion User on 12-12-11. // Copyright (c) 2012年 Lion User. All rights reserved. // #import <UIKit/UIKit.h> @interface TWFXViewController : UIViewController @property (retain, nonatomic) IBOutlet

C语言K&R习题系列——统计一段文字中各个字母出现的频率

原题: /*Write a program to print a histogram of the frequencies of *difficent characters in it inputs */ 这个和上一个类似 输入部分 #include < stdio.h >    #define NUM_CHARS 256    main ( void )  { int c; int done = 0; int thisIdx = 0; long frequrr[NUM_CHARS + 1];

C#开发笔记-读取文件,并将文件使用分隔符隔开

//读取报告数据 string data=null; using (System.IO.StreamReader sr = new System.IO.StreamReader(filePath, System.Text.Encoding.Default)) { while ((data = sr.ReadLine()) != null) { // data = sr.ToString(); string[] val=data.Split(','); } } C#开发笔记-读取文件,并将文件使用

借助全新 MATLAB&#174; 适配器代码示例读取英特尔&#174; 实感? 摄像头数据流

下载源代码请访问原文地址:借助全新 MATLAB® 适配器代码示例读取英特尔® 实感™ 摄像头数据流 简介 该可下载代码示例简要介绍了如何使用英特尔® 实感™ SDK 和 MATLAB 的图像采集工具箱适配器套件在 MATLAB® 工作区获取英特尔® 实感™ 摄像头(R200 和 F200)的原始摄像头数据流. 该示例代码支持 MATLAB 开发人员开发面向英特尔® 平台.并具备以下特性的英特尔® 实感™ 应用: 多数据流同步. 同时获取颜色数据流和景深数据流(见图 1). 多摄像头支持. 同时