Re: iOS Storyboard - on boarding - skip

2013-10-19 Thread Alex Kac
I’ve considered that as my last resort - I’m not against code as I normally do most of my work in code and don’t use NIBs as much as I probably should - but I’m trying to see what is possible via storyboards and a bit of code. On Oct 18, 2013, at 9:44 PM, Richard Heard wrote: > Seems like a c

Re: iOS Storyboard - on boarding - skip

2013-10-18 Thread Richard Heard
Seems like a case where it would make more sense to push the controllers explicitly. ie: YNYourNextStepViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:YNYourNextStepViewControllerIdentifier]; [self.navigationController presentViewController:vc animated:YES complet

iOS Storyboard - on boarding - skip

2013-10-18 Thread Alex Kac
Howdy guys. I am looking for some advice. I have an on boarding process that asks for permissions from the user for things like contacts, location, etc…where each page describes why we’re asking and then asks the user to enable access. It works wonderfully and really makes everything far simpler