美文网首页
UIView的常见方法

UIView的常见方法

作者: Hevin_Chen | 来源:发表于2016-09-18 20:04 被阅读16次

    - addSubview:   //  添加一个子控件

    - 使用这个方法添加的子控件会被塞到subviews数组的最后面

    - 可以使用下面的方法调整子控件在subview数组中的顺序

    - (void)insertSubview:(UIView *)view atIndex:(NSInteger)index;   // 将子控件view插入到subviews数组的index位置

    - (void)insertSubview:(UIView *)view belowSubview:(UIView *)siblingSubview;  // 将子控件view显示到子控件siblingSubview的下面

    - (void)insertSubview:(UIView *)view aboveSubview:(UIView *)siblingSubview;  // 将子控件view显示到子控件siblingSubview的上面

    - (void)bringSubviewToFront:(UIView *)view;  // 将子控件view放到数组的最后面,显示在最上面

    - (void)sendSubviewToBack:(UIView *)view;  // 将子控件view放到数组的最前面,显示在最下面

    相关文章

      网友评论

          本文标题:UIView的常见方法

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