[Code Note] Get the text height after the Rich Text settings, after the notes

Source: Internet
Author: User

[Code Note] Get the text height after the Rich Text settings, after the notes

I ,.

 

2. Engineering Drawing.

3. Code.

RootViewController. h

#import <UIKit/UIKit.h>@interface RootViewController : UIViewController@end

 

RootViewController. m

# Import "RootViewController. h "@ interface RootViewController () @ end @ implementation RootViewController-(id) initWithNibName :( NSString *) bundle :( NSBundle *) handle {self = [super initWithNibName: nibNameOrNil bundle: nibBundleOrNil]; if (self) {// Custom initialization} return self;}-(void) viewDidLoad {[super viewDidLoad]; // Do any additional setup after loading the view. // initialization interface [self addView];} # pragma-mark-functions // initialization interface-(void) addView {// text UILabel * dataLabel = [[UILabel alloc] init]; dataLabel. backgroundColor = [UIColor orangeColor]; dataLabel. text = @ "I Am a text 11111111111111111111111111111111111"; dataLabel. textColor = [UIColor redColor]; dataLabel. font = [UIFont fontWithName: @ "Arial" size: 14]; dataLabel. numberOfLines = 0; [self. view addSubview: dataLabel]; // rich text sets the text line spacing NSMutableParagraphStyle * paragraphStyle = [[NSMutableParagraphStyle alloc] init]; paragraphStyle. lineSpacing = 4; NSDictionary * attributes = @ {NSFontAttributeName: [UIFont systemFontOfSize: 14], NSParagraphStyleAttributeName: paragraphStyle}; dataLabel. attributedText = [[NSAttributedString alloc] initWithString: dataLabel. text attributes: attributes]; // obtain the height CGRect fram = [dataLabel. attributedText boundingRectWithSize: CGSizeMake (210, MAXFLOAT) options: NSStringDrawingUsesLineFragmentOrigin context: nil]; dataLabel. frame = CGRectMake (50,100,210, fram. size. height);}-(void) didreceivemorywarning {[super didreceivemorywarning]; // Dispose of any resources that can be recreated .}

 

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.