The iOS label is adaptive Based on the display content.

Source: Internet
Author: User

The iOS label is adaptive Based on the display content.

1-(void) setupLabel {2 // preparation 3 UILabel * textLabel = [[UILabel alloc] init]; 4 textLabel. font = [UIFont systemFontOfSize: 16]; 5 NSString * str = @ "222222222222222222222222222222222222222222"; 6 textLabel. text = str; 7 textLabel. backgroundColor = [UIColor redColor]; 8 textLabel. numberOfLines = 0; // set 9 textLabel based on the maximum number of rows. lineBreakMode = NSLineBreakByTruncatingTail; 10 CGSize maximumLabelSize = CGSizeMake (100,999 9); // maximum value of labelsize 11 // key statement 12 CGSize expectSize = [textLabelSizeThatFits: MaximumLabelSize]; 13 // don't forget to return the frame to the label. If xib is used to add constraints, you can only change the value of the constraint to 14 textLabel. frame = CGRectMake (20, 70, expectSize. width, expectSize. height); 15 [self. view addSubview: textLabel]; 16}

 

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.