美文网首页
计算出UIlabel显示文字的行数

计算出UIlabel显示文字的行数

作者: CocoaJason | 来源:发表于2019-06-22 11:22 被阅读0次

    参考文章

    - (NSInteger)needLinesWithWidth:(CGFloat)width;{
        UILabel *label = [[UILabel alloc] init];
        label.font = self.font;
        NSString *text = self.text;
        NSInteger sum = 0;
        if (text.length != 0) {
            NSArray *splitTexts = [text componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]];
            for (NSString *stext in splitTexts) {
                label.text = stext;
                CGSize textSize = [label systemLayoutSizeFittingSize:CGSizeZero];
                NSInteger lines = ceilf(textSize.width / width);
                lines = lines == 0 ? 1 : lines;
                sum += lines;
            }
        }
        return sum;
    }
    

    相关文章

      网友评论

          本文标题:计算出UIlabel显示文字的行数

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