MainView.h
MainView.m
GameView.m
What am I doing wrong. 'change' in GameView won't fire.
I also tried plopping
into MainView.m, and removing the line from MainView.h, same result, nothing happened.
Code:
#import "GameView.h"
@interface MainScreen : NSView {
GameView *gmView;
}
MainView.m
Code:
[gmView change];
GameView.m
Code:
- (void) change { Lala
What am I doing wrong. 'change' in GameView won't fire.
I also tried plopping
Code:
GameView *gmView = (GameView *)[NSApplication sharedApplication];
into MainView.m, and removing the line from MainView.h, same result, nothing happened.