ios开发text kit_TextKit

一、简介

iOS中实现富文本的方式一般有三种:

第一种是CoreText,这两天看了唐巧的介绍CoreText的文章,感觉太复杂了,虽然能勉强看懂,但是应用起来有些困难。

第二种就是用UIWebView和WKWebView,这个要依赖于前端工程师。

第三种就是TextKit了,这种方式实现起来,相对于CoreText简单很多,而且是iOS原生的,不依赖前端开发人员,iOS7以后都是支持的。

TextKit是iOS7新推出的文字排版技术,使用TextKit可以很方便的实现富文本、表情混排和图文混排等效果。TextKit中的几个关键的类:

NSAttributeString和NSMutableAttributeString:属性字符串和可变属性字符串,这个TextKit中最基础的类,文字中的所有富文本属性都是通过属性字符串来表现出来的

NSTextAttachment:字符串的附件,将图片,可以将图片等内容当做一个附件插入到属性字符串中,可以实现表情混排,链接等效果

二、事例

20150402235843040.png

#import "TextKitEmojiTextVC.h"

NSString * str = @"asfasfa阿斯顿发生大发撒放大离开家撒旦法按时付款就阿里;双方均asfasdfasfdalkjsflakj阿斯顿发生大发撒旦法asdfasdfaasfdaasa撒旦法;拉斯克奖发了奥斯卡奖罚洛杉矶的法律;看见谁发的阿斯利康就发;了数据库等法律按实际开发;阿里就开始放到了;安家费阿里山科技发达了开始将对方拉开始交电费了卡双方的空间啊发送卡飞机阿里开始就放暑假了罚款就是浪费";

@interface TextKitEmojiTextVC ()

@property (nonatomic, strong) UITextView * textView;

@end

@implementation TextKitEmojiTextVC

- (void)viewDidLoad {

[super viewDidLoad];

self.title = @"普通文字排版&表情混排";

//初始化textView

self.edgesForExtendedLayout = UIRectEdgeNone;

self.textView = [[UITextView alloc] initWithFrame:CGRectMake(20, 20, [UIScreen mainScreen].bounds.size.width - 40, [UIScreen mainScreen].bounds.size.height - 40 - 44 - 20)];

self.textView.backgroundColor = [UIColor cyanColor];

self.textView.text = str;

self.textView.font = [UIFont systemFontOfSize:15];

self.textView.editable = NO;

self.textView.delegate = self;

[self.view addSubview:self.textView];

//设置常规属性

[self setupNormalAttribute];

//链接和表情

[self setupEmojiAndLink];

}

/**

* 向文本中添加表情,链接等

*/

- (void)setupEmojiAndLink

{

NSMutableAttributedString * mutStr = [self.textView.attributedText mutableCopy];

//添加表情

UIImage * image1 = [UIImage imageNamed:@"010"];

NSTextAttachment * attachment1 = [[NSTextAttachment alloc] init];

attachment1.bounds = CGRectMake(0, 0, 30, 30);

attachment1.image = image1;

NSAttributedString * attachStr1 = [NSAttributedString attributedStringWithAttachment:attachment1];

[mutStr insertAttributedString:attachStr1 atIndex:50];

//添加表情

UIImage * image2 = [UIImage imageNamed:@"011"];

NSTextAttachment * attachment2 = [[NSTextAttachment alloc] init];

attachment2.bounds = CGRectMake(0, 0, 15, 15);

attachment2.image = image2;

NSAttributedString * attachStr2 = [NSAttributedString attributedStringWithAttachment:attachment2];

[mutStr insertAttributedString:attachStr2 atIndex:100];

//添加链接

NSURL * url = [NSURL URLWithString:@"http://www.baidu.com"];

[mutStr addAttribute:NSLinkAttributeName value:url range:NSMakeRange(70, 10)];

self.textView.attributedText = [mutStr copy];

}

/**

* 设置常规属性

*/

- (void)setupNormalAttribute

{

NSMutableAttributedString * mutStr = [self.textView.attributedText mutableCopy];

//颜色

[mutStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(10, 10)];

//字体

[mutStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:25] range:NSMakeRange(20, 5)];

//下划线

[mutStr addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle | NSUnderlinePatternDot) range:NSMakeRange(32, 8)];

//空心字

[mutStr addAttribute:NSStrokeWidthAttributeName value:@(2) range:NSMakeRange(42, 5)];

self.textView.attributedText = [mutStr copy];

}

/**

* 点击图片触发代理事件

*/

- (BOOL)textView:(UITextView *)textView shouldInteractWithTextAttachment:(NSTextAttachment *)textAttachment inRange:(NSRange)characterRange

{

NSLog(@"%@", textAttachment);

return NO;

}

/**

* 点击链接,触发代理事件

*/

- (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange

{

[[UIApplication sharedApplication] openURL:URL];

return YES;

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

@end

20150403000308303.png

#import "TextKitImageTextVC.h"

NSString * str1 = @"asfasfa阿斯顿发生大发撒放大离开家撒旦法按时付款就阿里;双方均asfasdfasfdalkjsflakj阿斯顿发生大发撒旦法asdfasdfaasfdaasa撒旦法;拉斯克奖发了奥斯卡奖罚洛杉矶的法律;看见谁发的阿斯利康就发;了数据库等法律按实际开发;阿里就开始放到了;安家费阿里山科技发达了开始将对方拉开始交电费了卡双方的空间啊发送卡飞机阿里开始就放暑假了罚款就是浪费asfasfa阿斯顿发生大发撒放大离开家撒旦法按时付款就阿里;双方均asfasdfasfdalkjsflakj阿斯顿发生大发撒旦法asdfasdfaasfdaasa撒旦法;拉斯克奖发了奥斯卡奖罚洛杉矶的法律;看见谁发的阿斯利康就发;了数据库等法律按实际开发;阿里就开始放到了;安家费阿里山科技发达了开始将对方拉开始交电费了卡双方的空间啊发送卡飞机阿里开始就放暑假了罚款就是浪费asfasfa阿斯顿发生大发撒放大离开家撒旦法按时付款就阿里;双方均asfasdfasfdalkjsflakj阿斯顿发生大发撒旦法asdfasdfaasfdaasa撒旦法;拉斯克奖发了奥斯卡奖罚洛杉矶的法律;看见谁发的阿斯利康就发;了数据库等法律按实际开发;阿里就开始放到了;安家费阿里山科技发达了开始将对方拉开始交电费了卡双方的空间啊发送卡飞机阿里开始就放暑假了罚款就是浪费";

@interface TextKitImageTextVC ()

@property (nonatomic, strong) UITextView * textView;

@end

@implementation TextKitImageTextVC

- (void)viewDidLoad {

[super viewDidLoad];

// Do any additional setup after loading the view.

self.title = @"文字环绕";

//初始化textLabel

self.edgesForExtendedLayout = UIRectEdgeNone;

self.textView = [[UITextView alloc] initWithFrame:CGRectMake(20, 20, [UIScreen mainScreen].bounds.size.width - 40, [UIScreen mainScreen].bounds.size.height - 40 - 44 - 20)];

self.textView.backgroundColor = [UIColor cyanColor];

self.textView.text = str1;

self.textView.font = [UIFont systemFontOfSize:15];

self.textView.editable = NO;

[self.view addSubview:self.textView];

//图文混排,设置图片的位置

UIImageView * imageView = [[UIImageView alloc] initWithFrame:CGRectMake(120, 120, 100, 100)];

imageView.image = [UIImage imageNamed:@"011"];

imageView.backgroundColor = [UIColor redColor];

[self.view addSubview:imageView];

CGRect rect = CGRectMake(100, 100, 100, 100);

//设置环绕的路径

UIBezierPath * path = [UIBezierPath bezierPathWithRect:rect];

self.textView.textContainer.exclusionPaths = @[path];

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

@end

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值