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

  • 相关阅读:
    水洼,八连杀
    友链
    万能转换字符类型到int ,int到string,string到char or char *等等
    蓝桥杯模拟赛题
    2020 03 21
    2019 12 02 reading
    CentOS 7 定时计划任务设置
    xinted &telnet
    2019 12 02 section C one
    【暖*墟】#洛谷网课1.30# 树上问题
  • 原文地址:https://www.cnblogs.com/gzz2016/p/5407208.html
Copyright © 2011-2022 走看看