tableview性能优化之coreText

最近在做实时聊天,出现了滚动tableview卡顿问题,经过研究发现是因为图片太多造城的,于是试着用coretext在label的drawrect方法里面绘制果然取得了不错的效果,下面跟大家分享一下。

1.绘制文字   

  我是自定义了一个label,在label里面进行图文混排,要添加coreText.framework库,然后自定义的label中要添加#import<CoreText/CoreText.h>头文件

1)首先在label的drawrect方法里面

CGContextRef context =UIGraphicsGetCurrentContext();//获取绘制上下文

CGContextSetShadowWithColor(context,CGSizeMake(0.3,0.3), 0.3,  [UIColorcolorWithRed:0green:0blue:0alpha:0.6].CGColor);//设置文本阴影

CGContextSetTextMatrix(context,CGAffineTransformIdentity);//翻转当前的坐标系(因为对于底层绘制引擎来说,屏幕左下角为(0,0))

CGAffineTransform flipVertical =CGAffineTransformMake(1,0,0,-1,0,self.bounds.size.height);

CGContextConcatCTM(context, flipVertical);//将当前context的坐标系进行反转

下面创建一个富文本string

NSMutableAttributedString* usernameattribute = [[NSMutableAttributedStringalloc]initWithString:@"coreTextTest"];

2)添加图片占位

如果里面需要添加图片那么先要预留下一个空白位置给图片,最后在统一绘制图片

NSString* imageName =kNew_UserId2_living;//图片名字

CTRunDelegateCallbacks imageCallbacks;//CTRunDelegateCallbacks 来给图片设置一个占位

imageCallbacks.version =kCTRunDelegateVersion1;

imageCallbacks.dealloc =RunDelegateDeallocCallback;

imageCallbacks.getAscent =RunDelegateGetAscentCallback;//获取图片高

imageCallbacks.getDescent =RunDelegateGetDescentCallback;//获取图片离底部距离

imageCallbacks.getWidth =RunDelegateGetWidthCallback;//获取图片宽度

CTRunDelegateRef runDelegate =CTRunDelegateCreate(&imageCallbacks, (__bridgevoid*)imageName);

NSMutableAttributedString *attribute = [[NSMutableAttributedStringalloc] initWithString:@" "];//空格用于给图片留位置

[attribute addAttribute:(NSString *)kCTRunDelegateAttributeNamevalue:(__bridgeid)runDelegate range:NSMakeRange(0,1)];

CFRelease(runDelegate);

[attribute addAttribute:@"imageName"value:imageName range:NSMakeRange(0,1)];

NSMutableAttributedString*  username = [[NSMutableAttributedString alloc]initWithAttributedString:attribute];

[usernameattribute appendAttributedString:username];

[usernameattribute setAttributes:@{(id)kCTFontAttributeName:[UIFontboldSystemFontOfSize:17],(id)kCTForegroundColorAttributeName:_warningColor}range:NSMakeRange(0,usernameattribute.length)];//设置字体大小颜色等

注:(

void RunDelegateDeallocCallback(void* refCon){

}

CGFloat RunDelegateGetAscentCallback(void* refCon){

NSString *imageName = (__bridge NSString*)refCon;

return [UIImage imageNamed:imageName].size.height;

}

CGFloat RunDelegateGetDescentCallback(void *refCon){

return 0;

}

CGFloat RunDelegateGetWidthCallback(void *refCon){

NSString *imageName = (__bridge NSString *)refCon;

return [UIImage imageNamed:imageName].size.width;

}

这四个方法写在drawrect方法外面

设置文本行间距,换行模式,段落间距等

//创建文本,    行间距

CGFloat lineSpace = 0.3;

CTParagraphStyleSetting lineSpaceStyle;

lineSpaceStyle.spec = kCTParagraphStyleSpecifierLineSpacing;

lineSpaceStyle.valueSize = sizeof(lineSpace);

lineSpaceStyle.value=&lineSpace;

//换行模式

CTParagraphStyleSetting lineBreakMode;

CTLineBreakMode lineBreak = kCTLineBreakByCharWrapping;

lineBreakMode.spec = kCTParagraphStyleSpecifierLineBreakMode;

lineBreakMode.value = &lineBreak;

lineBreakMode.valueSize = sizeof(CTLineBreakMode);

//设置  段落间距

CGFloat paragraph = 1.0;

CTParagraphStyleSetting paragraphStyle;

paragraphStyle.spec = kCTParagraphStyleSpecifierParagraphSpacing;

paragraphStyle.valueSize = sizeof(CGFloat);

paragraphStyle.value = ¶graph;

CTParagraphStyleSetting settings[] = {

lineBreakMode,lineSpaceStyle,paragraph

};

CTParagraphStyleRef style = CTParagraphStyleCreate(settings, 3);

NSMutableDictionary *attributes = [NSMutableDictionary dictionaryWithObject:(id)style forKey:(id)kCTParagraphStyleAttributeName ];

// set attributes to attributed string

[usernameattribute addAttributes:attributes range:NSMakeRange(0, [usernameattribute length])];

CFRelease(style);

//创建绘制区域

CGMutablePathRef path = CGPathCreateMutable();

CGRect bounds = CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height);

CGPathAddRect(path, NULL, bounds);

//根据AttributedString生成CTFramesetterRef

CTFramesetterRef frameSetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)usernameattribute);

CTFrameRef frame = CTFramesetterCreateFrame(frameSetter, CFRangeMake(0, [usernameattribute length]), path, NULL);

//进行绘制

CTFrameDraw(frame, context);

//绘制图片

CFArrayRef lines = CTFrameGetLines(frame);

CGPoint lineOrigins[CFArrayGetCount(lines)];

CTFrameGetLineOrigins(frame, CFRangeMake(0, 0), lineOrigins);

for (CFIndex i = 0; i < CFArrayGetCount(lines); i++) {

      CTLineRef line = (CTLineRef)CFArrayGetValueAtIndex(lines, i);

      CGFloat lineAscent;

      CGFloat lineDescent;

      CGFloat lineLeading;

      CTLineGetTypographicBounds(line, &lineAscent, &lineDescent, &lineLeading);

       CFArrayRef runs = CTLineGetGlyphRuns(line);

       for (CFIndex j = 0; j < CFArrayGetCount(runs); j++) {

              CGFloat runAscent;

             CGFloat runDescent;

             CGPoint lineOrigin = lineOrigins[i];

              CTRunRef run = (CTRunRef)CFArrayGetValueAtIndex(runs, j);

              NSDictionary* attributes = (NSDictionary*)CTRunGetAttributes(run);

             CGRect runRect;

             runRect.size.width = CTRunGetTypographicBounds(run, CFRangeMake(0,0), &runAscent, &runDescent, NULL);

             runRect=CGRectMake(lineOrigin.x + CTLineGetOffsetForStringIndex(line,     CTRunGetStringRange(run).location, NULL), lineOrigin.y - runDescent, runRect.size.width, runAscent + runDescent);

            NSString *imageName = [attributes objectForKey:@"imageName"];

            //图片渲染逻辑

           UIImage *image = [UIImage imageNamed:imageName];

           if (image) {

              CGRect imageDrawRect;

              imageDrawRect.size = image.size;

              imageDrawRect.origin.x = runRect.origin.x + lineOrigin.x;

              imageDrawRect.origin.y = lineOrigin.y-2;

             CGContextDrawImage(context, imageDrawRect, image.CGImage);

        }

    }

}

CFRelease(frame);

CFRelease(path);

CFRelease(frameSetter);

这样定制出来的cell即使有图片滑动也非常顺滑

下面就是计算cell的这一行的高度了

计算富文本高度用一下方法

- (int)getAttributedStringHeightWithString:(NSAttributedString *)  string  WidthValue:(int) width

{

int total_height = 0;

CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)string);    //string 为要计算高度的NSAttributedString

CGRect drawingRect = CGRectMake(0, 0, width, 1000);  //这里的高要设置足够大

CGMutablePathRef path = CGPathCreateMutable();

CGPathAddRect(path, NULL, drawingRect);

CTFrameRef textFrame = CTFramesetterCreateFrame(framesetter,CFRangeMake(0,0), path, NULL);

CGPathRelease(path);

CFRelease(framesetter);

NSArray *linesArray = (NSArray *) CTFrameGetLines(textFrame);

CGPoint origins[[linesArray count]];

CTFrameGetLineOrigins(textFrame, CFRangeMake(0, 0), origins);

int line_y = (int) origins[[linesArray count] -1].y;  //最后一行line的原点y坐标

CGFloat ascent;

CGFloat descent;

CGFloat leading;

CTLineRef line = (__bridge CTLineRef) [linesArray objectAtIndex:[linesArray count]-1];

CTLineGetTypographicBounds(line, &ascent, &descent, &leading);

total_height = 1000 - line_y + (int) descent +1;    //+1为了纠正descent转换成int小数点后舍去的值

CFRelease(textFrame);

return total_height;

}

计算出来的高度通过label的方法反给tableview的高度计算代理方法就可以了

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容

  • 1.iOS中的round、ceil、floor函数略解 round如果参数是小数,则求本身的四舍五入.ceil如果...
    K_Gopher阅读 1,177评论 1 0
  • CoreText是iOS/OSX中文本显示的一个底层框架,它是用C语言写成的,有快速简单的优势。iOS中的Text...
    小猫仔阅读 4,924评论 2 9
  • //设置尺寸为屏幕尺寸的时候self.window = [[UIWindow alloc] initWithFra...
    LuckTime阅读 793评论 0 0
  • 本文所涉及的代码你可以在这里下载到https://github.com/kejinlu/CTTest,包含两个项目...
    eb99d15a673d阅读 1,245评论 0 6
  • --绘图与滤镜全面解析 概述 在iOS中可以很容易的开发出绚丽的界面效果,一方面得益于成功系统的设计,另一方面得益...
    韩七夏阅读 2,710评论 2 10