美文网首页
UI其他属性

UI其他属性

作者: 挖掘机 | 来源:发表于2016-02-14 11:05 被阅读20次

    import "ViewController.h"

    @interface ViewController () @property (weak, nonatomic) IBOutlet UILabel *label;

    @end

    @implementation ViewController

    (void)viewDidLoad {

    }

    (IBAction)btnClick {

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

    tempView.backgroundColor=[UIColor orangeColor];

    tempView.frame=CGRectMake(10, 10, 56, 45);

    [self.view addSubview:tempView];

    }

    相关文章

      网友评论

          本文标题:UI其他属性

          本文链接:https://www.haomeiwen.com/subject/eqiukttx.html