Привет, мировой код для Mountain Lion OSX 10.8, показывающий уведомление как iChat Есть ли какой-нибудь пример для показа приветствия мира на Mountain Lion OSX 10.8 (новый центр уведомлений). Просто чтобы добавить визуальную ясность, вот что я говорю: Ответ 1 Наконец-то я нашел ответ после небольшой помощи от @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]; Надеюсь, что это поможет людям. Ответ 2 Посмотрите NSUserNotification и NSUserNotificationCenter.
Ответ 1 Наконец-то я нашел ответ после небольшой помощи от @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]; Надеюсь, что это поможет людям.