Hello,
Im sure this is something really simple I'm missing. I use makeKeyAndOrderFront:
to open a window and it works the first time. When I close the window and try and open it again it quits and gives me the error EXC_BAD_ACCESS
. My code is this:
- (IBAction)viewScreen:(id)sender {
[screenView makeKeyAndOrderFront:sender];
}
I can't figure out why this is happening and the debugger console isn't saying much of anything.
Thanks in advance