i'm having problems working out how to get a custom nsview to communicate that something has happened to my main controller class.
the controller class has an instance of mapView like this:
IBOutlet MapView *mapView;
which is instantiated through interface builder, and in my mapView class, i'm getting mouse clicks like this:
- (void)mouseDown:(NSEvent *)theEvent { //whatever...
but when this happens, a variable or two needs to be changed in the controller class - how can i do this?