2012-07-19 82 views

回答

0

我找到了解決方案。我剛剛創建一個抽象類,將覆蓋呈現模式的看法,這樣的方法:

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

當然還有我所有的視圖控制器繼承它。
希望這會有所幫助。

相關問題