Segue与Unwind Segues
2017-11-10 本文已影响10人
知交
UIView层次管理
-
将一个UIView显示在最前面,调用其父视图的
bringSubviewToFront()
-
将一个UIView层推送到背后,调用其父视图的
sendSubviewToBack()
-
将View放到父视图指定某层
// 将self.drawingview 放到self.view的最底层(1) [self.view insertSubview:self.drawingview atIndex:1];