我正在尝试在Mac应用程序中显示一个通知窗口。应用程序的试用版中会出现这样的东西。窗口将不可移动30秒(并且它将有一个计数器倒计数到0)。 30秒后它将继续执行。
这是代码。
_systemNotificationWindow = [[SystemNotificationWindow alloc]initWithWindowNibName:@"SystemNotificationWindow"];
NSLog(@"1111");
[self.systemNotificationWindow setActionDelegate:self];
[self.systemNotificationWindow startTimer:30];
NSLog(@"2222");
[self.systemNotificationWindow showWindow:self];
NSLog(@"3333");
NSLog(@"4444");
代码卡在此行
[self.systemNotificationWindow showWindow:self];
显示窗口但是计时器没有工作,30秒后窗口也没有消失。还没有打印3333和4444.