도래울

whose view is not in the window hierarchy 오류 대처 방법 본문

개발/iOS

whose view is not in the window hierarchy 오류 대처 방법

도래울 2016. 2. 11. 13:44
whose view is not in the window hierarchy

오류가 난다.
EkEventEditViewController 가 ViewController 위에 생성이 되었다고 하면서 나는 오류이다.

혹시나 해서 ViewController 를 NavigationViewController 로 변경해도 마찬가지이다.

UIViewController *topController = [UIApplication sharedApplication].keyWindow.rootViewController;
    while (topController.presentedViewController) {
        topController = topController.presentedViewController;
    }
[topController presentViewController:addEventVC animated:YES completion:nil];

위의 구문을 넣어주면 된다.


Comments