Segue与Unwind Segues

  • 使用Segue与Unwind Segues 实现的页面跳转,和回调,以及跳转传值。
  • UIPopoverPresentationController的使用

UIView层次管理

  1. 将一个UIView显示在最前面,调用其父视图的

     bringSubviewToFront()
    
  2. 将一个UIView层推送到背后,调用其父视图的

    sendSubviewToBack()
    
  3. 将View放到父视图指定某层

    //   将self.drawingview 放到self.view的最底层(1)
     [self.view insertSubview:self.drawingview atIndex:1];
    

你可能感兴趣的:(Segue与Unwind Segues)