Here's my code:
- (IBAction)showTaskDetailView:(id)sender {
[window setContentView:viewTaskView];
}
How would I fade out the current view and fade in the detail view?
Here's my code:
- (IBAction)showTaskDetailView:(id)sender {
[window setContentView:viewTaskView];
}
How would I fade out the current view and fade in the detail view?
Don't change the content view; put both views in the same content view, and use NSViewAnimation to fade one out and the other in.