답변

0

해결책을 찾았습니다. 물론

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

내 모든 뷰 컨트롤러가 상속 : 난 그냥 그렇게, 모달 뷰를 표현하기위한 방법을 무시하는 추상 클래스를 작성했습니다.
희망이 도움이됩니다.

관련 문제