TextKit框架詳細(xì)解析 (二) —— 基本概覽和應(yīng)用場(chǎng)景(二)

版本記錄

版本號(hào) 時(shí)間
V1.0 2018.08.29

前言

TextKit框架是對(duì)Core Text的封裝忆矛,用簡(jiǎn)潔的調(diào)用方式實(shí)現(xiàn)了大部分Core Text的功能趣苏。 TextKit是一個(gè)偏上層的開發(fā)框架甲锡,在iOS7以上可用,使用它可以方便靈活處理復(fù)雜的文本布局昧穿,滿足開發(fā)中對(duì)文本布局的各種復(fù)雜需求凡壤。TextKit實(shí)際上是基于CoreText的一個(gè)上層框架署尤,其是面向?qū)ο蟮摹=酉聛?lái)幾篇我們就一起看一下這個(gè)框架鲤遥。感興趣的看下面幾篇文章沐寺。
1. TextKit框架詳細(xì)解析 (一) —— 基本概覽和應(yīng)用場(chǎng)景(一)

路徑排除

路徑排除其實(shí)就是對(duì)指定視圖對(duì)象以外的路徑進(jìn)行文字布局,當(dāng)移動(dòng)該對(duì)象的時(shí)候盖奈,周圍的文字會(huì)重新進(jìn)行布局混坞。

下面還是首先看下代碼。

1. JJExclusionPathVC.h
#import <UIKit/UIKit.h>

@interface JJExclusionPathVC : UIViewController

@end
2. JJExclusionPathVC.m
#import "JJExclusionPathVC.h"

@interface JJExclusionPathVC ()

@property (nonatomic, strong) UITextView *textView;
@property (nonatomic, strong) NSTextStorage *textStorage;
@property (nonatomic, strong) NSTextContainer *textContainer;
@property (nonatomic, strong) NSLayoutManager *layoutManager;
@property (nonatomic, strong) UIView *exclusionView;
@property (nonatomic, assign) CGPoint offSetFromCenter;

@end

@implementation JJExclusionPathVC

#pragma mark -  Override Base Function

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.textContainer = [[NSTextContainer alloc] init];
    self.layoutManager = [[NSLayoutManager alloc] init];
    self.textStorage   = [[NSTextStorage alloc] init];
    [self.textStorage addLayoutManager:self.layoutManager];
    [self.layoutManager addTextContainer:self.textContainer];
    
    self.textView = [[UITextView alloc] initWithFrame:CGRectZero textContainer:self.textContainer];
    self.textView.backgroundColor = [UIColor lightGrayColor];
    [self.view addSubview:self.textView];
    
    NSString *testString = @"春江潮水連海平钢坦,海上明月共潮生究孕。滟滟隨波千萬(wàn)里,何處春江無(wú)月明爹凹!江流宛轉(zhuǎn)繞芳甸厨诸,月照花林皆似霰;空里流霜不覺飛禾酱,汀上白沙看不見微酬。江天一色無(wú)纖塵,皎皎空中孤月輪颤陶。江畔何人初見月颗管?江月何年初照人?人生代代無(wú)窮已滓走,江月年年只相似垦江。不知江月待何人,但見長(zhǎng)江送流水搅方。白云一片去悠悠比吭,青楓浦上不勝愁绽族。誰(shuí)家今夜扁舟子?何處相思明月樓衩藤?可憐樓上月徘徊吧慢,應(yīng)照離人妝鏡臺(tái)。玉戶簾中卷不去慷彤,搗衣砧上拂還來(lái)娄蔼。此時(shí)相望不相聞,愿逐月華流照君底哗。鴻雁長(zhǎng)飛光不度,魚龍潛躍水成文锚沸。昨夜閑潭夢(mèng)落花跋选,可憐春半不還家。江水流春去欲盡哗蜈,江潭落月復(fù)西斜前标。斜月沉沉藏海霧,碣石瀟湘無(wú)限路距潘。不知乘月幾人歸炼列,落月?lián)u情滿江樹。";
    [self.textStorage replaceCharactersInRange:NSMakeRange(0, 0) withString:testString];
    
    self.exclusionView = [[UIView alloc] init];
    self.exclusionView.backgroundColor = [UIColor blueColor];
    [self.textView addSubview:self.exclusionView];
    
    UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panGestureAction:)];
    [self.exclusionView addGestureRecognizer:pan];
}

- (void)viewDidLayoutSubviews
{
    [super viewDidLayoutSubviews];
    
    self.textView.frame = CGRectMake(10.0, 150.0, self.view.bounds.size.width - 20.0, 300.0);

    self.exclusionView.frame = CGRectMake(140.0, 40.0, 80.0, 80.0);
    self.exclusionView.layer.masksToBounds = YES;
    self.exclusionView.layer.cornerRadius = 40.0;
    
    [self updateExclusionPath];
}

#pragma mark -  Object Private Function

- (void)updateExclusionPath
{
    CGRect originalPathRect = self.exclusionView.frame;
    CGFloat circle_X = originalPathRect.origin.x - self.textView.textContainerInset.left;
    CGFloat circle_Y = originalPathRect.origin.y - self.textView.textContainerInset.top;
    CGFloat circle_W = originalPathRect.size.width;
    CGFloat circle_H = originalPathRect.size.height;
    CGRect circleRect = CGRectMake(circle_X, circle_Y, circle_W, circle_H);
    
    UIBezierPath *exclusionCirclePath = [UIBezierPath bezierPathWithOvalInRect:circleRect];
    self.textContainer.exclusionPaths = @[exclusionCirclePath];
}

#pragma mark -  Action && Notification

- (void)panGestureAction:(UIPanGestureRecognizer *)pan
{
    if (pan.state == UIGestureRecognizerStateBegan) {
        self.offSetFromCenter = [pan locationInView:self.exclusionView];
    }
    
    CGPoint locationPointSuperView = [pan locationInView:self.textView];
    CGPoint circleCenter = self.exclusionView.center;
    CGFloat radius = self.exclusionView.bounds.size.width * 0.5;
    circleCenter.x = locationPointSuperView.x + (radius - self.offSetFromCenter.x);
    circleCenter.y = locationPointSuperView.y + (radius - self.offSetFromCenter.y);
    self.exclusionView.center = circleCenter;
    
    [self updateExclusionPath];
}

@end

下面看一下實(shí)現(xiàn)效果


不規(guī)則文本展示

這里的不規(guī)則指的就是布局的不規(guī)則音比,從而顯示出來(lái)的就是不規(guī)則形狀的文本布局俭尖。

1. 網(wǎng)球拍

下面還是首先看一下代碼。

1. JJIrregularShapeVC.h
#import <UIKit/UIKit.h>

@interface JJIrregularShapeVC : UIViewController

@end
2. JJIrregularShapeVC.m
#import "JJIrregularShapeVC.h"
#import "JJIrregularShapeTextContainer.h"

@interface JJIrregularShapeVC ()

@property (nonatomic, strong) UITextView *textView;
@property (nonatomic, strong) NSTextStorage *textStorage;
@property (nonatomic, strong) JJIrregularShapeTextContainer *textContainer;
@property (nonatomic, strong) NSLayoutManager *layoutManager;

@end

@implementation JJIrregularShapeVC

#pragma mark -  Override Base Function

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor cyanColor];
    
    self.textContainer = [[JJIrregularShapeTextContainer alloc] init];
    self.layoutManager = [[NSLayoutManager alloc] init];
    self.textStorage = [[NSTextStorage alloc] init];
    [self.layoutManager addTextContainer:self.textContainer];
    [self.textStorage addLayoutManager:self.layoutManager];
    
    self.textView = [[UITextView alloc] initWithFrame:CGRectMake(10.0, 80.0, self.view.bounds.size.width - 20.0, 400.0) textContainer:self.textContainer];
    [self.view addSubview:self.textView];
    
    NSString *testString = @"春江潮水連海平洞翩,海上明月共潮生稽犁。滟滟隨波千萬(wàn)里,何處春江無(wú)月明骚亿!江流宛轉(zhuǎn)繞芳甸已亥,月照花林皆似霰;空里流霜不覺飛来屠,汀上白沙看不見虑椎。江天一色無(wú)纖塵,皎皎空中孤月輪俱笛。江畔何人初見月捆姜?江月何年初照人?人生代代無(wú)窮已嫂粟,江月年年只相似娇未。不知江月待何人,但見長(zhǎng)江送流水星虹。白云一片去悠悠零抬,青楓浦上不勝愁镊讼。誰(shuí)家今夜扁舟子?何處相思明月樓平夜?可憐樓上月徘徊蝶棋,應(yīng)照離人妝鏡臺(tái)。玉戶簾中卷不去忽妒,搗衣砧上拂還來(lái)玩裙。此時(shí)相望不相聞,愿逐月華流照君段直。鴻雁長(zhǎng)飛光不度吃溅,魚龍潛躍水成文。昨夜閑潭夢(mèng)落花鸯檬,可憐春半不還家决侈。江水流春去欲盡,江潭落月復(fù)西斜喧务。斜月沉沉藏海霧赖歌,碣石瀟湘無(wú)限路。不知乘月幾人歸功茴,落月?lián)u情滿江樹庐冯。   春江潮水連海平,海上明月共潮生坎穿。滟滟隨波千萬(wàn)里展父,何處春江無(wú)月明!江流宛轉(zhuǎn)繞芳甸赁酝,月照花林皆似霰犯祠;空里流霜不覺飛,汀上白沙看不見酌呆。江天一色無(wú)纖塵衡载,皎皎空中孤月輪。江畔何人初見月隙袁?江月何年初照人痰娱?人生代代無(wú)窮已,江月年年只相似菩收。不知江月待何人梨睁,但見長(zhǎng)江送流水。白云一片去悠悠娜饵,青楓浦上不勝愁坡贺。誰(shuí)家今夜扁舟子?何處相思明月樓?可憐樓上月徘徊遍坟,應(yīng)照離人妝鏡臺(tái)拳亿。玉戶簾中卷不去,搗衣砧上拂還來(lái)愿伴。此時(shí)相望不相聞肺魁,愿逐月華流照君。鴻雁長(zhǎng)飛光不度隔节,魚龍潛躍水成文鹅经。昨夜閑潭夢(mèng)落花,可憐春半不還家怎诫。江水流春去欲盡瘾晃,江潭落月復(fù)西斜。斜月沉沉藏海霧幻妓,碣石瀟湘無(wú)限路酗捌。不知乘月幾人歸,落月?lián)u情滿江樹涌哲。   春江潮水連海平,海上明月共潮生尚镰。滟滟隨波千萬(wàn)里阀圾,何處春江無(wú)月明!江流宛轉(zhuǎn)繞芳甸狗唉,月照花林皆似霰初烘;空里流霜不覺飛,汀上白沙看不見分俯。江天一色無(wú)纖塵肾筐,皎皎空中孤月輪。江畔何人初見月缸剪?江月何年初照人吗铐?人生代代無(wú)窮已,江月年年只相似杏节。不知江月待何人唬渗,但見長(zhǎng)江送流水。白云一片去悠悠奋渔,青楓浦上不勝愁镊逝。誰(shuí)家今夜扁舟子?何處相思明月樓嫉鲸?可憐樓上月徘徊撑蒜,應(yīng)照離人妝鏡臺(tái)。玉戶簾中卷不去,搗衣砧上拂還來(lái)座菠。此時(shí)相望不相聞狸眼,愿逐月華流照君。鴻雁長(zhǎng)飛光不度辈灼,魚龍潛躍水成文份企。昨夜閑潭夢(mèng)落花,可憐春半不還家巡莹。江水流春去欲盡司志,江潭落月復(fù)西斜。斜月沉沉藏海霧降宅,碣石瀟湘無(wú)限路骂远。不知乘月幾人歸,落月?lián)u情滿江樹腰根。Over";
    [self.textStorage replaceCharactersInRange:NSMakeRange(0, 0) withString:testString];
}

@end
3. JJIrregularShapeTextContainer.h
#import <UIKit/UIKit.h>

@interface JJIrregularShapeTextContainer : NSTextContainer

@end
4. JJIrregularShapeTextContainer.m
#import "JJIrregularShapeTextContainer.h"

@implementation JJIrregularShapeTextContainer

#pragma mark -  Override Base Function

- (CGRect)lineFragmentRectForProposedRect:(CGRect)proposedRect atIndex:(NSUInteger)characterIndex writingDirection:(NSWritingDirection)baseWritingDirection remainingRect:(CGRect *)remainingRect
{
    //原始的范圍
    CGRect rect = [super lineFragmentRectForProposedRect:proposedRect
                                                 atIndex:characterIndex
                                        writingDirection:baseWritingDirection
                                           remainingRect:remainingRect];
    //當(dāng)前顯示區(qū)域
    CGSize size = [self size];
    
    //當(dāng)前區(qū)域的內(nèi)切圓半徑
    CGFloat radius = fmin(size.width, size.height) * 0.5;
    
    //得到不同狀態(tài)下當(dāng)前行的寬度
    CGFloat width = 0.0;
    if (proposedRect.origin.y == 0.0) {
        //初始行的寬度
        width = 40.0;
    }
    else if (proposedRect.origin.y <= 2 * radius) {
        //接下來(lái)圓范圍內(nèi)的行寬度
        width = 2.0 * sqrt(powf(radius, 2.0) - powf(fabs(proposedRect.origin.y - radius), 2.0));
    }
    else if (proposedRect.origin.y <= 4 * radius) {
        //接下來(lái)圓外面的較細(xì)寬度
        width = 30.0;
    }
    else {
        //接下來(lái)圓外面的較寬寬度
        width = 100.0;
    }
    //最終該行的寬度
    CGRect circleRect = CGRectMake(radius - width / 2.0, proposedRect.origin.y, width, proposedRect.size.height);
    
    //返回一個(gè)和原始范圍的交集激才,防止溢出。
    return CGRectIntersection(rect, circleRect);
}

@end

下面看一下實(shí)現(xiàn)效果额嘿,像不像一個(gè)網(wǎng)球拍~~~

2. 斜直線

還是直接看一下代碼

1. JJSlashTextVC.h
#import <UIKit/UIKit.h>

@interface JJSlashTextVC : UIViewController

@end
2. JJSlashTextVC.m
#import "JJSlashTextVC.h"
#import "JJSlashView.h"

@interface JJSlashTextVC ()

@property (nonatomic, strong) JJSlashView *slashView;

@end

@implementation JJSlashTextVC

#pragma mark -  Override Base Function

- (void)viewDidLoad
{
    [super viewDidLoad];

    [self.navigationController setNavigationBarHidden:YES];
    
    self.slashView = [[JJSlashView alloc] initWithFrame:self.view.bounds];
    self.slashView.backgroundColor = [UIColor cyanColor];
    [self.view addSubview:self.slashView];
}

@end
3. JJSlashView.h
#import <UIKit/UIKit.h>

@interface JJSlashView : UIView

@end
4. JJSlashView.m
#import "JJSlashView.h"

@interface JJSlashView()

@property (nonatomic, strong) NSTextStorage *textStorage;
@property (nonatomic, strong) NSLayoutManager *layoutManager;
@property (nonatomic, strong) NSTextContainer *textContainer;
@property (nonatomic, strong) UITextView *textView;

@end

@implementation JJSlashView

- (instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        self.textContainer = [[NSTextContainer alloc] init];
        self.layoutManager = [[NSLayoutManager alloc] init];
        self.textStorage = [[NSTextStorage alloc] init];
        [self.layoutManager addTextContainer:self.textContainer];
        [self.textStorage addLayoutManager:self.layoutManager];
        
        NSString *testString = @"春江潮水連海平瘸恼,海上明月共潮生。";
        [self.textStorage replaceCharactersInRange:NSMakeRange(0, 0) withString:testString];
    }
    return self;
}

- (void)drawRect:(CGRect)rect
{
    NSRange range = NSMakeRange(0, self.textStorage.length);
    [self.layoutManager lineFragmentRectForGlyphAtIndex:0 effectiveRange:&range];
    
    for (NSInteger glyIndex = 0; glyIndex >= range.location && glyIndex <= range.location + range.length - 1; glyIndex ++) {
        CGFloat margin = 0.0;
        if (margin == 0) {
            margin = 80.0;
        }
         //繪制文字
        [self.layoutManager drawGlyphsForGlyphRange:NSMakeRange(glyIndex, 1) atPoint:CGPointMake(10, 20 * glyIndex + margin)];  
    }
}

@end

下面看一下效果展示

后記

本篇主要講述了TextKit框架的兩個(gè)常用的使用場(chǎng)景册养,感興趣的給個(gè)贊或者關(guān)注~~~

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末东帅,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子球拦,更是在濱河造成了極大的恐慌靠闭,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,265評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件坎炼,死亡現(xiàn)場(chǎng)離奇詭異愧膀,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)谣光,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門檩淋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人抢肛,你說(shuō)我怎么就攤上這事狼钮。” “怎么了捡絮?”我有些...
    開封第一講書人閱讀 156,852評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵熬芜,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我福稳,道長(zhǎng)涎拉,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,408評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮鼓拧,結(jié)果婚禮上半火,老公的妹妹穿的比我還像新娘。我一直安慰自己季俩,他們只是感情好钮糖,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評(píng)論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著酌住,像睡著了一般店归。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上酪我,一...
    開封第一講書人閱讀 49,772評(píng)論 1 290
  • 那天消痛,我揣著相機(jī)與錄音,去河邊找鬼都哭。 笑死秩伞,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的欺矫。 我是一名探鬼主播纱新,決...
    沈念sama閱讀 38,921評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼穆趴!你這毒婦竟也來(lái)了怒炸?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,688評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤毡代,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后勺疼,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體教寂,經(jīng)...
    沈念sama閱讀 44,130評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評(píng)論 2 325
  • 正文 我和宋清朗相戀三年执庐,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了酪耕。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,617評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡轨淌,死狀恐怖迂烁,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情递鹉,我是刑警寧澤盟步,帶...
    沈念sama閱讀 34,276評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站躏结,受9級(jí)特大地震影響却盘,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評(píng)論 3 312
  • 文/蒙蒙 一黄橘、第九天 我趴在偏房一處隱蔽的房頂上張望兆览。 院中可真熱鬧,春花似錦塞关、人聲如沸抬探。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)小压。三九已至,卻和暖如春匿醒,著一層夾襖步出監(jiān)牢的瞬間场航,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工廉羔, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留溉痢,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,315評(píng)論 2 360
  • 正文 我出身青樓憋他,卻偏偏與公主長(zhǎng)得像孩饼,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子竹挡,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容