我对这个应用程序开发领域比较陌生。我试图在用户登录和注销事件期间收到通知。我已经尝试过NSWorkSpaceNotifications
,但它对我不起作用。
有人可以帮我吗。
-(void)logInLogOutNotifications{
NSNotificationCenter *notCenter;
notCenter = [[NSWorkspace sharedWorkspace] notificationCenter];
[notCenter addObserver:self
selector:@selector(observerMethod)
name:NSWorkspaceWillPowerOffNotification object:nil];
}
-(void)observerMethod:(NSNotification *)senderNotification;{
NSLog(@"System Logout Notification is called***********************");
}