美文网首页
iOS手动计算当前cell的高度

iOS手动计算当前cell的高度

作者: e40c669177be | 来源:发表于2016-12-06 17:29 被阅读59次
       /**
         *  手动计算lable的高度
            label.font.lineHeight:label一行的高度
         *
         *  @param maxHeight 最大的宽度
         *  @param string    label.text的string
         *  @param fond      label的字体
         *
         *  @return 当前label的高度
         */
        +(CGFloat)cellHeightAndMaxWeight:(NSInteger)maxHeight string:(NSString *)string fond:(NSInteger)fond{
            
           return  [string boundingRectWithSize:CGSizeMake(maxHeight, MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName : [UIFont systemFontOfSize:fond]} context:nil].size.height;
            
        }

    相关文章

      网友评论

          本文标题:iOS手动计算当前cell的高度

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