I make test app that show second view when the init view is shown. My code is this:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self performSegueWithIdentifier:@"showSecondView" sender:self];
}
But second view is not shown. Can someone help me. Thanks a lot