zoukankan      html  css  js  c++  java
  • 2016.04.19 添加在上面在下面

    [self.view bringSubviewToFront:pickview]; 

    - (void)removeFromSuperview;

    - (void)insertSubview:(UIView *)view atIndex:(NSInteger)index;

    - (void)exchangeSubviewAtIndex:(NSInteger)index1 withSubviewAtIndex:(NSInteger)index2;

     

    - (void)addSubview:(UIView *)view;

    - (void)insertSubview:(UIView *)view belowSubview:(UIView *)siblingSubview;

    - (void)insertSubview:(UIView *)view aboveSubview:(UIView *)siblingSubview;

     

    - (void)bringSubviewToFront:(UIView *)view;

    - (void)sendSubviewToBack:(UIView *)view;

     

    - (void)didAddSubview:(UIView *)subview;

    - (void)willRemoveSubview:(UIView *)subview;

     

    - (void)willMoveToSuperview:(nullable UIView *)newSuperview;

    - (void)didMoveToSuperview;

    - (void)willMoveToWindow:(nullable UIWindow *)newWindow;

    - (void)didMoveToWindow;

     

    - (BOOL)isDescendantOfView:(UIView *)view;  // returns YES for self.

    - (nullable __kindof UIView *)viewWithTag:(NSInteger)tag; // recursive search. includes self

     

    // Allows you to perform layout before the drawing cycle happens. -layoutIfNeeded forces layout early

    - (void)setNeedsLayout;

    - (void)layoutIfNeeded;

     

    - (void)layoutSubviews

  • 相关阅读:
    PyCharm常用快捷键
    在PyCharm中打开文件的位置
    使用Socket下载图片
    Python散列类型和运算符
    Python格式化输出和深浅复制
    爬虫的概念和会话
    Python数值类型和序列类型
    HTTP与HTTPS
    PyCharm彻底删除项目
    PyCharm永久激活
  • 原文地址:https://www.cnblogs.com/gzz2016/p/5407208.html
Copyright © 2011-2022 走看看