我有一个ViewContainer(UIView),当孩子消失的时候,我想告诉家长给关闭设置动画。
是否有我可以使用的通知,以便父级监听并为关闭设置动画。
[self addChildViewController:content]; // 1
content.view.frame = DocumentViewContainer.frame; // 2
[DocumentViewContainer addSubview:content.view];
[content didMoveToParentViewController:self]; // 3
谢谢, 尼克
答案 0 :(得分:0)
NSDictionary *dic = [[NSDictionary alloc] initWithObjectsAndKeys:@"NO", @"ShouldOpenNewView", nil];
[[NSNotificationCenter defaultCenter] postNotificationName:@"closeChildView" object:self userInfo:dic];