iOS 视图层次管理 sendSubviewToBack、bringSubviewToFront

直接上代码


[objc]  view plain  copy
 print ?
  1. - (void)viewDidLoad {  
  2.     [super viewDidLoad];  
  3.     // Do any additional setup after loading the view, typically from a nib.  
  4.       
  5.     UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(105010050)];  
  6.     view1.backgroundColor = [UIColor blueColor];  
  7.     [self.view addSubview:view1];  
  8.       
  9.     UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(155510050)];  
  10.     view2.backgroundColor = [UIColor grayColor];  
  11.     [self.view addSubview:view2];  
  12.       
  13.     //如果将下面两行代码都注释掉   view1 会在下面   view2会在上面  
  14.     //  下面这行代码能够将view2  调整到父视图的最下面  
  15. //    [self.view sendSubviewToBack:view2];  
  16.     //将view调整到父视图的最上面  
  17.     [self.view bringSubviewToFront:view1];  
  18.       
  19. }  

你可能感兴趣的:(iOS 视图层次管理 sendSubviewToBack、bringSubviewToFront)