通知父视图容器

时间:2013-12-30 16:31:23

标签: ios uiview nsnotifications uicontainerview

我有一个ViewContainer(UIView),当孩子消失的时候,我想告诉家长给关闭设置动画。

是否有我可以使用的通知,以便父级监听并为关闭设置动画。

[self addChildViewController:content];                 // 1

content.view.frame = DocumentViewContainer.frame; // 2
[DocumentViewContainer addSubview:content.view];
[content didMoveToParentViewController:self];          // 3

谢谢, 尼克

1 个答案:

答案 0 :(得分:0)

NSDictionary *dic = [[NSDictionary alloc] initWithObjectsAndKeys:@"NO", @"ShouldOpenNewView",  nil];

[[NSNotificationCenter defaultCenter] postNotificationName:@"closeChildView" object:self userInfo:dic];