2012-05-13 56 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"]; 
} 
相關問題