Custom UIView implements a simple Custom view through xib

Source: Internet
Author: User

1/** 2 * using the Custom UIView path, I did not go smoothly. I had to do something in the early stage. 2. It took a lot of time! 3 * now there is not much free time, so we can only take the time to write two demos. First, we will do exercises, and second, we will sort them out, which may help people who want to learn! 4 */
1/** 2 * three common implementation methods of Custom UIView: 3 * Method_1: through initialization (eg: UITableViewCell rewriting) 4 Method_2: Through the drawRect method, use the code to draw the desired view 5 Method_3: Use xib6 */

 

 

 

 

 

/*** Initialization code: ** @ return [nibView objectAtIndex: 0] */+ (ZYCustomView *) initCustomView {NSArray * nibView = [[NSBundle mainBundle] loadNibNamed: @ "ZYCustomView" owner: nil options: nil]; return [nibView objectAtIndex: 0];}
/*** Reference in ViewController */-(void) viewDidLoad {[super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. ZYCustomView * test = [ZYCustomView initCustomView]; test. backgroundColor = [UIColor yellowColor]; test. clipsToBounds = YES; test. frame = CGRectMake (0, 20,320,200); test. lb1.text = @ "I am the first line"; [self. view addSubview: test];}

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.