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

  • 相关阅读:
    一行代码搞定图片缩放、旋转、加水印
    如何学习 Webpack
    Webpack 概念
    Webpack 入门
    asp.net core教程 (一)
    asp.net core教程 (二)
    ap.net core 教程(三)
    Grafana 安装配置
    zabbix-3.0.x LTS源码安装配置
    MariaDB Security
  • 原文地址:https://www.cnblogs.com/gzz2016/p/5407208.html
Copyright © 2011-2022 走看看