zoukankan      html  css  js  c++  java
  • ios-coreText做微信点赞功能

    coretext绘制 个人理解为

    一个CTFrame有几个CTLine组成,有几行文字就有几行CTLine。一个CTLine有包含多个CTRun,一个CTRun是所有属性都相同的那部分富文本的绘制单元。所以CTRun是CTFrame的基本绘制单元

    资料博客链接地址:http://www.jianshu.com/p/6db3289fb05d

    计算绘制的coreText内容的高度

    + (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;

        

    }

  • 相关阅读:
    PostgreSQL新手入门
    nodejs获取当前url和url参数值
    nodejs怎么同步从一个数据库查询函数中返回一个值
    linux几种快速清空文件内容的方法
    Redis常用命令(二)
    解读vscode断点调试配置文件【待续】
    以下公司【勿扰】
    思维定律与法则
    运行项目报错183
    css counter的使用方法
  • 原文地址:https://www.cnblogs.com/nngh/p/5753137.html
Copyright © 2011-2022 走看看