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

这是国旗吗?

时间:2014-07-10 16:50:02      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:blog   http   color   2014   io   re   

bubuko.com,布布扣

            

- (void)viewDidLoad {

    [super viewDidLoad];

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

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

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

    redView.backgroundColor=[UIColor greenColor];

    [self.view addSubview:redView];

    

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

    greenView.frame=CGRectMake(100, 100, 100, 200);

    greenView.backgroundColor=[UIColor redColor];

    [self.view addSubview:greenView];

    

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

    blackView.frame=CGRectMake(200, 100, 100, 200);

    blackView.backgroundColor=[UIColor blackColor];

    [self.view addSubview:blackView];

这是国旗吗?,布布扣,bubuko.com

这是国旗吗?

标签:blog   http   color   2014   io   re   

原文地址:http://www.cnblogs.com/niang123/p/3834678.html

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