你如何切换ViewControllers?

时间:2013-09-22 06:30:23

标签: ios objective-c uiviewcontroller

我目前有两个ViewControllers(2 .h.m.xib个文件),并且想要在按下按钮时切换它们(即选项按钮)。 /> enter image description here enter image description here enter image description here

我正在尝试将屏幕切换到Options.xib文件,但我不确定如何执行此操作。 (.pngs只是启动图像。)我对Objective-C不是很有经验(完整的代码将不胜感激。)谢谢:)

2 个答案:

答案 0 :(得分: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){}];
}

答案 1 :(得分:0)

Ctrl drag从按钮到Options View Controller,然后选择了modal