bounds坐标:本身定义的坐标系统,setbound指明了本视图左上角在该坐标系统中的坐标,spa
默认值(0,0)code
frame坐标: 子视图左上角在父视图坐标系统(bounds坐标系统)中的坐标,默认值(0,0)blog
子视图实际位置=父视图实际位置-父视图bounds坐标+子视图frame坐标it
1、boundsio
只影响“子视图”相对屏幕的位置,修改时不会影响自身相对屏幕的位置class
一、父视图bounds坐标为(0,0)时im
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. NSLog(@"view frame:%@========view bounds:%@",NSStringFromCGRect(self.view.frame),NSStringFromCGRect(self.view.bounds)); UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(20, 20, 200, 260)]; view1.backgroundColor = [UIColor redColor]; [self.view addSubview:view1]; NSLog(@"view frame:%@========view bounds:%@",NSStringFromCGRect(self.view.frame),NSStringFromCGRect(self.view.bounds)); }
二、父视图bounds坐标为(-20,-20)时 call
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. NSLog(@"view frame:%@========view bounds:%@",NSStringFromCGRect(self.view.frame),NSStringFromCGRect(self.view.bounds)); UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(20, 20, 200, 260)]; view1.backgroundColor = [UIColor redColor]; [self.view addSubview:view1]; [self.view setBounds:CGRectMake(-20, -20, 320, 568)]; NSLog(@"view frame:%@========view bounds:%@",NSStringFromCGRect(self.view.frame),NSStringFromCGRect(self.view.bounds)); }
2、frameimg
修改时改变了本身的在父视图坐标系统(bounds坐标系统)的位置,自身位置和di
子视图位置都会被改变。
一、父视图frame坐标(0,0)
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 260)]; view1.backgroundColor = [UIColor redColor]; [self.view addSubview:view1]; UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)]; view2.backgroundColor = [UIColor yellowColor]; [view1 addSubview:view2]; NSLog(@"view frame:%@========view bounds:%@",NSStringFromCGRect(view1.frame),NSStringFromCGRect(view1.bounds)); NSLog(@"view frame:%@========view bounds:%@",NSStringFromCGRect(view2.frame),NSStringFromCGRect(view2.bounds)); }
二、父视图frame坐标(60,60)
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(60, 60, 200, 260)]; view1.backgroundColor = [UIColor redColor]; [self.view addSubview:view1]; UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)]; view2.backgroundColor = [UIColor yellowColor]; [view1 addSubview:view2]; NSLog(@"view frame:%@========view bounds:%@",NSStringFromCGRect(view1.frame),NSStringFromCGRect(view1.bounds)); NSLog(@"view frame:%@========view bounds:%@",NSStringFromCGRect(view2.frame),NSStringFromCGRect(view2.bounds)); }
3、说明
根视图只能修改bounds坐标,而不能够修改frame坐标
如下self.view为根视图
一、初始状态
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(20, 20, 200, 260)]; view1.backgroundColor = [UIColor redColor]; [self.view addSubview:view1]; }
二、修改bounds坐标:有效
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(20, 20, 200, 260)]; view1.backgroundColor = [UIColor redColor]; [self.view addSubview:view1]; CGRect viewBounds = self.view.bounds; viewBounds.origin.y=-40; viewBounds.origin.x=-40; self.view.bounds=viewBounds; NSLog(@"view frame:%@========view bounds:%@",NSStringFromCGRect(self.view.frame),NSStringFromCGRect(self.view.bounds)); }
三、修改frame坐标:无效
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(20, 20, 200, 260)]; view1.backgroundColor = [UIColor redColor]; [self.view addSubview:view1]; CGRect viewFrame = self.view.frame; viewFrame.origin.y=60; viewFrame.origin.x=60; self.view.frame=viewFrame; NSLog(@"view frame:%@========view bounds:%@",NSStringFromCGRect(self.view.frame),NSStringFromCGRect(self.view.bounds)); }