storyBoard的使用,使用performSegueWithIdentifier來切換ViewController

原本以為使用performSegueWithIdentifier就可以輕鬆切換ViewController,沒想到一直發生錯誤
原來是要在IB中的segue的identifier寫下identifier,否則會錯誤
另外在stept3 的部分可以設定過場的畫面
- (IBAction)GoViewButton01:(id)sender
{
	[self performSegueWithIdentifier:@"ViewController01" sender:sender];
}


storyBoard的使用,使用performSegueWithIdentifier來切換ViewController_第1张图片

你可能感兴趣的:(controller)