有没有在 Mountain Lion OSX 10.8(新的通知中心)上显示 hello world 通知的示例。
只是为了增加视觉清晰度,这就是我所说的:
有没有在 Mountain Lion OSX 10.8(新的通知中心)上显示 hello world 通知的示例。
只是为了增加视觉清晰度,这就是我所说的:
在@Alexsander 的一点帮助下,我终于找到了答案。
NSUserNotification *notification = [[NSUserNotification alloc] init];
[notification setTitle:@"Hello World"];
[notification setInformativeText:@"Hello world message"];
[notification setDeliveryDate:[NSDate dateWithTimeInterval:20 sinceDate:[NSDate date]]];
[notification setSoundName:NSUserNotificationDefaultSoundName];
NSUserNotificationCenter *center = [NSUserNotificationCenter defaultUserNotificationCenter];
[center scheduleNotification:notification];
希望它可以帮助人们
向上看NSUserNotification
和NSUserNotificationCenter
。