In my app i have the following setup :
// .h
@interface MyDocument : NSPersistentDocument <NSApplicationDelegate>
{
...
}
// .m
@implementation MyDocument
-(void) applicationDidBecomeActive:(NSNotification *)notification
{
...
}
The applicationDidBecomeActive never gets called for some reason. Does anyone know I'm missing here?!