您的位置:首页 > 移动开发 > IOS开发

iOS didMoveToSuperview

2015-10-08 17:08 1581 查看
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



</pre><p></p></blockquote><p></p><p class="p1">实现方法</p><p class="p1"></p><pre name="code" class="objc">-(void)didMoveToSuperview{
NSLog(@"test didMoveToSuperview");
}


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

#import "ViewController.h"
#import "MyTestView.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.

MyTestView *testView=[[MyTestView alloc]initWithFrame:CGRectMake(10, 120, 300, 300)];
testView.backgroundColor=[UIColor grayColor];
[self.view addSubview:testView];

}

- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

@end


运行 是不是看到 log了



好了 。大家有什么问题欢迎继续讨论
苹果开发群2 :492222303  欢迎加入  欢迎讨论问题
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息