UILable usage in xcode

Source: Internet
Author: User

UILable usage in xcode
Initialization

UILabel * lable = [[UILabel alloc] init]; // initialize lable. frame = CGRectMake (30, 30,200, 50); // you can specify the lable position and size. backgroundColor = [UIColor orangeColor]; // set the lable background color [self. window addSubview: lable]; // Add [lable release];
Basic operations
Lable. alpha = 0.2; // The transparency range is 0-1 lable. text = @ "Zhao yadong"; // set the name lable. textColor = [UIColor redColor]; // font color lable. textAlignment = NSTextAlignmentCenter; // alignment lable. font = [UIFont boldSystemFontOfSize: 17]; // 17 lable font. numberOfLines = 0; // sets the number of rows to 0 and automatically adjusts the number of rows.
Other operations
NSLog (@ "% @", [UIFont familyNames]); // print all existing fonts lable. font = [UIFont systemFontOfSize: 22.2]; // only set the font color lable. highlighted = YES; // sets the highlight.

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.