美文网首页
UIKit-UIView

UIKit-UIView

作者: MrDemon_ | 来源:发表于2020-03-24 22:45 被阅读0次

    UIKit系列常见处理办法集合

    图层更换

    //图层置顶
    [self.view bringSubviewToFront:view];
    //图层置底
    [self.view sendSubviewToBack:view];
    //用第二层子视图 换 第一层子视图的位置  self.view是第0层
    [self.view exchangeSubviewAtIndex:1 withSubviewAtIndex:2];
    

    相关文章

      网友评论

          本文标题:UIKit-UIView

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