私は NSUserNotification を持っています
NSUserNotification *n = [NSUserNotification new];
n.title = self.title;
n.subtitle = self.subtitle;
[NSUserNotificationCenter.defaultUserNotificationCenter deliverNotification:n];
しかし、バナー表示時間を制御できませんか?次のようなプライベートAPIを使用して制御することは可能ですか
[n setValue:@(self.ignoresDoNotDisturb) forKey:@"_ignoresDoNotDisturb"];