创建并添加视图

//
//  ViewController.m
//  DemoProject
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // 初始化一个矩形区域 (距离左上角长度,距离左上角高度, 长,高)
    CGRect rect1 = CGRectMake(30, 30, 250, 250);
    // 创建一个视图
    UIView *view1 = [[UIView alloc] initWithFrame:rect1];
    view1.backgroundColor = [UIColor brownColor];
    
    CGRect rect2 = CGRectMake(50, 200, 400, 250);
    UIView *view2 = [[UIView alloc] initWithFrame:rect2];
    view2.backgroundColor = [UIColor yellowColor];
    
    // 将创建的视图添加到根视图上
    [self.view addSubview:view1];
    [self.view addSubview:view2];
}

@end

你可能感兴趣的:(创建并添加视图)