ios didMoveToSuperview

iOS  UIView 类目 UIViewHierarchy

有一个方法

  didMoveToSuperview


官方解释如下

Tells the view that its superview changed.


大致意思: 当view的父级视图更改的时候会调用此方法


The default implementation of this method does nothing. Subclasses can override it to perform additional actions whenever the superview changes.


大致意思:此方法默认实现,不做任何操作。子视图可以实现此方法,添加自己所需要的功能


通过以上我们可以理解为 次方法在view被添加新的父级视图的时候会调用。

我们尝试测试一下

首先新建一个项目TestDidMoveToSuperview


新建一个View 继承UIView 起名:MyTestView

[objc]  view plain copy
  1. </pre><p></p></blockquote><p></p><p class="p1">实现方法</p><p class="p1"></p><pre name="code" class="objc">-(void)didMoveToSuperview{  
  2.     NSLog(@"test didMoveToSuperview");  
  3. }  

接下来我们在ViewController.m中添加view


[objc]  view plain copy
  1. #import "ViewController.h"  
  2. #import "MyTestView.h"  
  3.   
  4. @interface ViewController ()  
  5.   
  6. @end  
  7.   
  8. @implementation ViewController  
  9.   
  10. - (void)viewDidLoad {  
  11.     [super viewDidLoad];  
  12.     // Do any additional setup after loading the view, typically from a nib.  
  13.       
  14.     MyTestView *testView=[[MyTestView alloc]initWithFrame:CGRectMake(10120300300)];  
  15.     testView.backgroundColor=[UIColor grayColor];  
  16.     [self.view addSubview:testView];  
  17.       
  18. }  
  19.   
  20. - (void)didReceiveMemoryWarning {  
  21.     [super didReceiveMemoryWarning];  
  22.     // Dispose of any resources that can be recreated.  
  23. }  
  24.   
  25. @end  


运行 是不是看到 log了


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值