Установите пользовательское время, когда NSUserNotification отображается
Я создаю NSUSerNotification
следующим образом:
NSUserNotification *notification = [[NSUserNotification alloc] init];
[notification setTitle:notificationTitle];
[notification setInformativeText:_informativeText];
[notification setSoundName:NSUserNotificationDefaultSoundName];
[[NSUserNotificationCenter defaultUserNotificationCenter] deliverNotification:notification];
Я хочу, чтобы уведомление отображалось дольше нескольких секунд.
Как настроить продолжительность отображения уведомления на экране?