标签:
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
#pragma mark 用代码添加按钮
// 系统默认程序开始时就加载此方法
- (void)viewDidLoad{
[super viewDidLoad];
// 1.创建按钮
UIButton *button = [[UIButton alloc] init];
// 2.添加按钮
[self.view addSubview:button];
// 3.设置frame
button.frame = CGRectMake(80, 80, 80, 80);
// 4.设置背景色
button.backgroundColor = [UIColor orangeColor];
}
@end
标签:
原文地址:http://www.cnblogs.com/lianfu/p/4681622.html