一,刚开始练习UI的时候,一般是在- (void)viewDidLoad方法中写代码测试,例如:
- (void)viewDidLoad{
CGRect rect=CGRectMake(0, 0, 320, 480);//声明一个rect
self.view.bounds=rect;//设置根视图不起作用,并且根视图的中心点就是左上角的那个点
self.view.backgroundColor=[UIColor yellowColor];
//根视图不可改变,先声明父视图
CGRect exchangeOrigin=CGRectMake(10, 0, 100, 10);
UIView *parentView=[[UIView alloc]init];//声明父视图
parentView.center=CGPointMake(10,100);//center方法把视图放在中间,CGRect设置四周大小,也就是center设置位置.CGRect设置形态
parentView.bounds=exchangeOrigin;//对俯视图进行边界设置,修改父视图坐标系统
parentView.backgroundColor=[UIColor redColor];//设置父视图背景色
[self.view addSubview:parentView];//把父视图添加到根视图上去
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}