I\'ve got a universal XCode Project (ObjC) for iPad and iPhone with a subproject that contains a storyboard. The subproject is a static library that has been added to the ma
For me solution is:
I used this code to load a new view controller - [UIStoryboard storyboardWithName:@"UIViewController" bundle:nil];
First I tried - [UIStoryboard storyboardWithName:@"UIViewController" bundle:[NSBundle mainBandle]];
But no lucky, finally I changed this code to:
[self performSegueWithIdentifier:@"Segue" sender:self];
And it helped, maybe it can help somebody too.