I am following a book and it gives me this code:
It gives me an error when compiling it? Can anyone help?
Code:
-(IBAction)displayOrCloseWindow:(id)sender {
//Fades in & out nicely
if(isOpen) {
[[self animator] setAlphaValue:0.0];
isOpen = NO;
}
else {
[[NSApplication sharedApplication] activateIgnoringOtherApps:YES];
[self makeKeyAndOrderFront:self];
[[self animator] setAlphaValue:1.0];
isOpen = YES;
}
}
It gives me an error when compiling it? Can anyone help?