Re: Help with Storyboard Problem

2017-06-20 Thread Dave
> On 19 Jun 2017, at 22:31, Quincey Morris > wrote: > > On Jun 19, 2017, at 11:24 , Dave > wrote: >> >> I’ve tried using Segues but can’t get that to work > > You haven’t said what “can’t get that to work” means. What do you expect? > What happens? What does

Re: Help with Storyboard Problem

2017-06-20 Thread Dave
Hi Doug and thanks for the help. Please see comment below. > On 19 Jun 2017, at 21:22, Doug Hill wrote: > > The process to set up a 'Show' segue is: > - Control-Click on the button in the Storyboard > - Drag to the View Controller window you want to present > - Select ‘Show' That’s part of the

Re: Help with Storyboard Problem

2017-06-19 Thread Quincey Morris
On Jun 19, 2017, at 11:24 , Dave wrote: > > I’ve tried using Segues but can’t get that to work You haven’t said what “can’t get that to work” means. What do you expect? What happens? What does your view controller hierarchy look like. > so instead of setting myView = > call: > [self presentVie

Re: Help with Storyboard Problem

2017-06-19 Thread Alex Zavatone
Dave. I’ll help you out if you need it on Skype or whatever. But first, have you embedded your first view controller in a navigation controller? Select your first view controller in the storyboard. From the Editor menu, select “Embed In” and then select “Navigation Controller”. If that doe

Re: Help with Storyboard Problem

2017-06-19 Thread Dave
A bit more on this: I tried it with a NIB as so: -(IBAction) startGameAction:(id) theSender { LTWBoardViewController* myGameViewController; UIView* myView; myGameViewController = [[LTWBoardViewController alloc] init

Re: Help with Storyboard Problem

2017-06-19 Thread davelist
> On Jun 19, 2017, at 2:24 PM, Dave wrote: > > XCode 8.3.3. > > Hi All, > > I’m using storyboards on an iOS project and can’t seem to get it to work. > > I have two view controllers in the “Main.storyboard” file. The fist view > controller has one button on it, that when clicked, I want it t

Help with Storyboard Problem

2017-06-19 Thread Dave
XCode 8.3.3. Hi All, I’m using storyboards on an iOS project and can’t seem to get it to work. I have two view controllers in the “Main.storyboard” file. The fist view controller has one button on it, that when clicked, I want it to go to the other view controller. I’ve tried using Segues but