美文网首页
不等高Cell

不等高Cell

作者: FredYJH | 来源:发表于2016-12-12 18:05 被阅读9次

    计算字符串一行的高度

    // 文字的字体大小
    NSDictionary *nameAtt = @{NSFontAttributeName:[UIFont systemFontOfSize:17]};
    // 文字的尺寸
    CGSize nameSize = [self.name sizeWithAttributes:nameAtt];
    

    计算字符串多行的高度

    // 文字的字体大小
    NSDictionary *nameAtt = @{NSFontAttributeName:[UIFont systemFontOfSize:17]};
    // 文字的尺寸和高度
    CGSize textSize = CGSizeMake(宽度,MAXFLOAT);高度不限制 
    CGFloat textHeight = [self.name sizeWithFont:[UIFont systemFontOfSize:17 constrainedToSize:textSize].height;

    相关文章

      网友评论

          本文标题:不等高Cell

          本文链接:https://www.haomeiwen.com/subject/hoommttx.html