2012-05-13 1 views

답변

1

다음 컨트롤러를 모두 기본 컨트롤러에 넣습니다.

- (void)gotoScreen:(NSString *)theScreen 
{ 
    AppDelegate *app = (AppDelegate *)[[UIApplication sharedApplication] delegate]; 

    UIViewController *screen = [self.storyboard instantiateViewControllerWithIdentifier:theScreen]; 
    [app.window setRootViewController:screen]; 
} 

그런 다음 로직이 발생하는 곳에서 필요에 따라 다음을 호출합니다.

if(myBool == YES) { 
    [self gotoScreen:@"theIdentifier"]; 
}