Re: Converting a Storyboard into separate NIBs.

2017-06-19 Thread Alex Zavatone
I think we’re reading this differently. But I remembered reading the header info from Mac OS in 2009, which I’ll have to look into. What I pasted from line 153 of UIKit, UIViewController.h, (NOT AppKit NSViewController.h) explicitly says that “If you invoke this method with a nil nib name, t

Re: Converting a Storyboard into separate NIBs.

2017-06-19 Thread David Duncan
> On Jun 19, 2017, at 3:37 PM, Charles Srstka wrote: > >> On Jun 19, 2017, at 4:29 PM, Alex Zavatone wrote: >> >> From line 153 of UIViewController.h: >> >> As a convenience, the default init method will do this for you, >> and specify nil for both of this methods arguments.) In the specif

Re: Converting a Storyboard into separate NIBs.

2017-06-19 Thread Charles Srstka
> On Jun 19, 2017, at 4:29 PM, Alex Zavatone wrote: > > From line 153 of UIViewController.h: > > As a convenience, the default init method will do this for you, > and specify nil for both of this methods arguments.) In the specified NIB, > the File's Owner proxy should > have its class s

Re: Converting a Storyboard into separate NIBs.

2017-06-19 Thread Alex Zavatone
> On Jun 19, 2017, at 3:25 PM, Charles Srstka wrote: > >> On Jun 19, 2017, at 2:51 PM, Alex Zavatone > > wrote: >> >> What is EXCELLENT is when you take the storyboard and remove all the top >> level views. Then, create individual XIBs for each scene. The >> viewControl

Re: Converting a Storyboard into separate NIBs.

2017-06-19 Thread Quincey Morris
On Jun 19, 2017, at 11:31 , Dave wrote: > > I think it would be better to move to NIBs now before wasting anymore time > trying to get Storyboards to work. I don’t honestly understand why you think this is going to make anything easier. With storyboards, you *are* using NIBs, behind the scenes

Re: Converting a Storyboard into separate NIBs.

2017-06-19 Thread Charles Srstka
> On Jun 19, 2017, at 2:51 PM, Alex Zavatone wrote: > > What is EXCELLENT is when you take the storyboard and remove all the top > level views. Then, create individual XIBs for each scene. The > viewController.h specifies that “if a view can not be found, an .xib with the > same name of the

Re: Converting a Storyboard into separate NIBs.

2017-06-19 Thread Alex Zavatone
Dave, I can help you out with this too. What is EXCELLENT is when you take the storyboard and remove all the top level views. Then, create individual XIBs for each scene. The viewController.h specifies that “if a view can not be found, an .xib with the same name of the class file will be lo

Converting a Storyboard into separate NIBs.

2017-06-19 Thread Dave
Hi All, I have an iOS project that I have made the mistake of using storyboards on. At the moment, I only have one fairly complex view controller and I think it would be better to move to NIBs now before wasting anymore time trying to get Storyboards to work. Can anyone tell me if this is an