Hi,
I have a button and a view. The main view is entitled 'FirstViewController' and I have a button in the FirstView that I want to switch to the SecondViewController, using storyboards.
I'm sure exactly what to do, because usually I'm used to using this particular code:
Code:
SecondViewController *two = [[SecondViewController alloc] initWithNibName:nil bundle: nil];
[self presentModalViewController :two animated:YES];
Could anyone please help me...