2013-03-18 84 views
0

我是新來的我的手機programming.Can任何機構告訴我如何連接到xib按鈕到故事板在我phone.I有一個項目,每個認爲包含故事板我想要將這個項目添加到viewcontroller xib項目,現在如何將xib按鈕連接到storyboard.Can任何機構告訴我如何去形式1視圖到故事板視圖controller.how將視圖控制器按鈕連接到故事板。 感謝 阿斯拉姆如何在iphone中以編程方式形成一個視圖到故事板

+0

我想從1個視圖去故事板視圖controller.how連接該查看控制器按鈕到故事板。 – Mohammed 2013-03-18 06:58:34

+0

看看這個http://stackoverflow.com/questions/8198698/linking-child-view-controllers-to-a-parent-view-controller-within-storyboard – 2013-03-18 07:01:22

回答

0

如果您還沒有創建在故事板您的ViewController一個Segue公司,那麼你需要與你查看標識&需要在動作/事件適用pushViewController從故事板獲得的viewController。

實施例:

@ 「MainStoryboard_iPhone」=故事板文件名 @ 「TabBarCntrl」=查看控制器標識符名稱

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil]; 

UIViewController *viewController = [storyboard instantiateViewControllerWithIdentifier:@"TabBarCntrl"]; 
[self.navigationController pushViewController:viewController animated:YES]; 
相關問題