문제

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?!

도움이 되었습니까?

해결책

Thanks to Carter's comment, I figured out that in the nib file application delegate is not linked to File's Owner (MyDocument). There fore, linking those two fix the problem!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top