10. Set the cell height (when the label height is variable, the cell height is variable) and celllabel

Source: Internet
Author: User

10. Set the cell height (when the label height is variable, the cell height is variable) and celllabel

First: (available after iOS8)

In Xib or stroyboard (the code can also be used)

Use AutoLayout to set the label constraint (for example, you can set four sides to 50 from the screen, and the four sides must be fixed ).

In the Code Section:

Estimate the cell height and set the cell height to automatically adjust the size. The Code is as follows:

1 self. tableView. estimatedRowHeight = 44; // It's Okay To write this value, but there must be 2 self. tableView. rowHeight = UITableViewAutomaticDimension;

Method 2: boudingRectWithSize

When setting the label constraint, you only need to set up the upper left and right directions as needed.

Then obtain the label text and call the boudingRectWithSize method.

1 // maximum text size 2 CGSize maxSize = CGSizeMake ([UIScreen mainScreen]. bounds. size. width-40, MAXFLOAT); 3 // maximum text height 4 CGFloat textH = [self. text boundingRectWithSize: maxSize options: NSStringDrawingUsesLineFragmentOrigin attributes: @ {NSFontAttributeName: [UIFont systemFontOfSize: 14]} context: nil]. size. height;

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.