I am writing a Mac app and trying to switch to full screen mode
I tried using two methods from my app delegate
[director setFullScreen:YES];
and
[self toggleFullScreen:self];
Nothing was happening
now when I tried breakpoints, it looks like it jups right at the end of this method:
- (void) setFullScreen:(BOOL)fullscreen
the method itself is never executed.
Where did I go wrong.
the funny part is when I started this project a couple of months ago in xCode 3.2 it was full screen by default and I had to change it.
not I have xCode 4 and can't get it to work.
please help.