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

代码创建button、view、label等控件

时间:2014-10-10 00:13:57      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:color   io   ar   for   sp   on   cti   代码   ad   

UIButton *b1=[[UIButton alloc]initWithFrame:CGRectMake(200, 200, 40, 20)];

    b1.backgroundColor=[UIColor redColor];

    view1=[[UIView alloc]initWithFrame:CGRectMake(100, 100, 50, 50)];

    view1.backgroundColor=[UIColor grayColor];

    [self.view addSubview:view1];

    [self.view addSubview:b1];

    [b1 addTarget:self action:@selector(b1click:) forControlEvents:UIControlEventTouchUpInside];

    UILabel *label=[[UILabel alloc]initWithFrame:CGRectMake(0, 0, 375, 17)];

    label.backgroundColor=[UIColor yellowColor];

    [self.view addSubview:label];

代码创建button、view、label等控件

标签:color   io   ar   for   sp   on   cti   代码   ad   

原文地址:http://www.cnblogs.com/a514875560/p/4014455.html

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