Calculate the height of text

Source: Internet
Author: User

Calculate the height of text
In two cases, the specified text has only 1 lines and multiple lines, and the size,options that can be written to return a string usually use nsstringdrawinguseslinefragmentorigin, so that the entire text will calculate the entire text height as a single-line text rectangle


① Text Display Line

-(Cgsize) Sizeonelinetext: (NSString *) text font: (Uifont *) font{    = [text boundingrectwithsize: Cgsizemake (Cgfloat_max, Cgfloat_max)                                         options:nsstringdrawinguseslinefragmentorigin                                      attributes:@{ Nsfontattributename:font}                                         context:nil].size;     return textSize;}

② text display multiple lines, you need to specify the text width

-(Cgsize) Sizemultilinetext: (NSString *) text font: (Uifont *) Font width: (cgfloat) width{    = [text Boundingrectwithsize:cgsizemake (width, cgfloat_max)                                     Options:nsstringdrawinguseslinefragmentorigin                                  Attributes:@{nsfontattributename:font}                                     context:nil].size;     return textSize;}

This method can be used within a custom button to calculate the position of text and image

Calculate the height of text

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.