2014-04-10 136 views
-1

我在故事板中使用故事板和xib,我想從故事板去xib文件,但無法扭轉它。所以我怎麼去從xib文件的故事板。 thnx提前。 故事板到廈門國際銀行:我如何去xib的故事板

Dashboard1ViewController *tempView = [[Dashboard1ViewController alloc]  initWithNibName:@"Dashboard1ViewController" bundle:nil]; 
    tempView.passemail = [matches valueForKey:@"email"]; 
    [self.view addSubview:tempView.view]; 

它工作正常,但廈門國際銀行,以故事情節我已經使用這個代碼

UIStoryboard *sb = [UIStoryboard storyboardWithName:@"loginUI" bundle:nil]; 
login2ViewController *vc = [sb instantiateViewControllerWithIdentifier:@"login2"]; 
vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; 
[self presentViewController:vc animated:YES completion:NULL]; 

,但它無法正常工作。

+0

請看看這個:HTTP://stackoverflow.com/questions/9190680/from-xib-to-storyboard – iDeveloper

回答

0

以下方法正在爲我工​​作。確保你的標識符是正確的

YourViewController *urViewController = (YourViewController *)[[UIStoryboard storyboardWithName:storyboardName bundle:nil]  instantiateViewControllerWithIdentifier:@"storyboardID"]; 
[self presentViewController:urViewController animated:YES completion:nil]; 
+0

它是不是在我的代碼工作。我正在使用ios7 – Rita

+0

您是否收到任何錯誤?調試並查找是否創建了ViewController實例。還要檢查您的故事板是否添加到了捆綁資源中。 –

+0

你提到的兩個選項沒有區別。 – limon

0

變化nil[NSBundle mainBundle]

UIStoryboard *sb = [UIStoryboard storyboardWithName:@"loginUI" 
              bundle:[NSBundle mainBundle]];