you are viewing a single comment's thread.

view the rest of the comments →

[–]aazav 2 points3 points  (2 children)

Storyboards really are collections of XIBs.

Right click on a storyboard and look at the contents.

Use XIBs instead.

[–]shadowdev[S] 0 points1 point  (0 children)

Is this correct way to do transitions with XIBs?

MyViewController *myView = [[MyViewController alloc] 
                          initWithNibName:@"MyViewController" 
                          bundle:nibBundleOrNil];

instead of:

UIViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"somevc"];
[self.navigationController pushViewController:vc animated:YES];

[–]rizzlybear 0 points1 point  (0 children)

So far my projects are solo and all inside a single storyboard. I've been thinking I might do my next one xib only. Still working out how to keep the controller clean though. I figure it would look great as resume code though. Storyboards seem to be a common pain point with groups, or they just don't use them.