码迷,mamicode.com
首页 > 其他好文 > 详细

李冬强-用代码写view

时间:2014-07-11 10:31:48      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:blog   http   color   os   2014   io   

bubuko.com,布布扣

主要代码

//

//  ViewController.m

//  创建view-709

//

//  Created by apple on 14-7-9.

//  Copyright (c) 2014年 戴维营教育. All rights reserved.

//

 

#import "ViewController.h"

 

@interface ViewController ()

            

 

@end

 

@implementation ViewController

            

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

//    CGPoint origin={0,0};

//    CGSize size={50,50};

//    CGRect rect={origin,size};

    

    UIView *yellView=[[UIView alloc]init];

    yellView.frame=CGRectMake(0, 0, 200, 200);

    yellView.backgroundColor=[UIColor yellowColor];

    [self.view addSubview:yellView];

    

    

    UIView *whiteView=[[UIView alloc]init];

    whiteView.frame=CGRectMake(0, 0, 100, 100);

    whiteView.backgroundColor=[UIColor grayColor];

    [yellView addSubview:whiteView];

    

    UIView *redView=[[UIView alloc]init];

    redView.frame=CGRectMake(100, 100, 100, 100);

    redView.backgroundColor=[UIColor redColor];

    [self.view addSubview:redView];

}

 

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

@end

 

李冬强-用代码写view,布布扣,bubuko.com

李冬强-用代码写view

标签:blog   http   color   os   2014   io   

原文地址:http://www.cnblogs.com/lidongq/p/3834202.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!