2013-09-22 61 views
0

我現在有兩個ViewControllers(2 .h.m,並.xib文件),並希望他們進行切換時按下按鈕(即選項按鈕。)
enter image description here enter image description here enter image description here你如何切換ViewControllers?

我想使屏幕切換到Options.xib文件,但不知道如何做到這一點。 (該.pngs只是推出圖像。)我不是很在Objective-C經歷(完整的代碼,將不勝感激。)謝謝:)

回答

1
#import "OptionViewController.h" 


- (void)viewDidLoad 
{ 
    [super viewDidLoad]; 
    [optionsButton addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside]; 
} 

- (IBAction)buttonPressed:(id)sender 
{ 
    OptionViewController *vc = [[OptionViewController alloc] initWithNibName:nil bundle:nil]; 
    [self presentViewController:vc animated:YES completion:^(void){}]; 
} 
+0

這是什麼文件? – blustone

+0

這需要進入實現文件(.m文件),無論哪個視圖控制器在屏幕上,幷包含您想要連接此操作的按鈕。您還需要代碼才能將操作附加到按鈕上(我將編輯我的答案)。 – bneely

+0

它有助於該按鈕被稱爲選項按鈕 – blustone

0

Ctrl drag從按鈕到Options View Controller並選擇modal

相關問題