美文网首页
Segue与Unwind Segues

Segue与Unwind Segues

作者: 知交 | 来源:发表于2017-11-10 11:09 被阅读10次

UIView层次管理

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

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

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

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

相关文章

网友评论

      本文标题:Segue与Unwind Segues

      本文链接:https://www.haomeiwen.com/subject/rafbmxtx.html