首页 > 代码库 > UIview层次管理

UIview层次管理

将一个UIView显示在最前面只需要调用其父视图的 bringSubviewToFront()方法。

将一个UIView层推送到背后只需要调用其父视图的 sendSubviewToBack()方法。

UIview层次管理