IOS UILabel Adaptive height based on content

Source: Internet
Author: User

IOS Label Adaptive Height adaptation iOS7 later versions more

Self.contentlabelview = [[UILabel alloc] init];

Self.contentLabelView.font = Sys_font (15);

Self.contentLabelView.lineBreakMode =nslinebreakbytruncatingtail;

Self.contentLabelView.textColor = [Uicolor colorwithhexstring:@ "#444444"];

Self.contentLabelView.text =[@ "12312312312312321321dddsdadsadasdasdas" stringbyappendingstring:@ "\n\n\n\n\n\n\n" ];

[Self.contentlabelview setnumberoflines:0];

Calculates the height required for a label based on the content

cgsize size = Cgsizemake (kscreenwidth-expectsizes.width-20, maxfloat);

Nsdictionary * Tdic = [Nsdictionary dictionarywithobjectsandkeys:self.contentlabelview.font,nsfontattributename,nil ];

Cgsize actualsize =[self.contentlabelview.text boundingrectwithsize:size options: Nsstringdrawinguseslinefragmentorigin Attributes:tdic context:nil].size;

Self.contentLabelView.frame =cgrectmake (expectsizes.width+20, 254, Actualsize.width, actualsize.height);

The plain code layout may be used, but xib or storyboard are recommended.

IOS UILabel Adaptive height based on content

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.