上海总部
南京公司
合肥公司
徐州公司
杭州服务中心
宁波服务中心
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
//设置背景色为白色
self.view.backgroundColor = [UIColor whiteColor];
//新建一个Label,Label就是用来存放文字的容器
UILabel *testLabel = [UILabel new];
//设置label的大小为页面的大小
testLabel.frame = self.view.frame;
//将label放入页面
[self.view addSubview:testLabel];
//设置label的文字为Hello World!!
testLabel.text = @"Hello World!!";
//文字选择居中显示
testLabel.textAlignment = NSTextAlignmentCenter;
//文字颜色为黑色
testLabel.textColor = [UIColor blackColor];
//设置文字为24号字体
testLabel.font = [UIFont systemFontOfSize:24];
}
© 2011-现在 智火营销 版权所有