15

有没有在 Mountain Lion OSX 10.8(新的通知中心)上显示 hello world 通知的示例。

只是为了增加视觉清晰度,这就是我所说的: 通知中心通知

4

2 回答 2

43

在@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];

希望它可以帮助人们

于 2012-07-18T20:29:36.383 回答
10

向上看NSUserNotificationNSUserNotificationCenter

于 2012-07-18T20:21:25.980 回答