0

我需要收到有关模态视图控制器演示的通知,我知道我可以使用NSNotificationCenter发布和观察我的自定义通知来完成,但我想知道这些通知是否已经存在。
谢谢,
安德里亚

4

1 回答 1

0

我找到了解决方案。我刚刚创建了一个抽象类,它覆盖了呈现模式视图的方法,如下所示:

- (void) presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated{
    [[NSNotificationCenter defaultCenter] postNotificationName:PresentingModal object:self];
    [super presentModalViewController:modalViewController animated: animated];
}

当然,我所有的视图控制器都继承自它。
希望这可以帮助。

于 2012-07-20T05:28:49.060 回答