NSUserNotificationCenter defaultUserNotificationCenter возвращает значение NULL в приложении Qt

У меня есть простое тестовое приложение Qt, которое пытается отправить уведомление пользователя на OS X:

void Mac::notify(QString title, QString message) {
  NSUserNotification *userNotification = [[[NSUserNotification alloc] init] autorelease];
  userNotification.title = title.toNSString();
  userNotification.informativeText = message.toNSString();
  NSUserNotificationCenter* center = [NSUserNotificationCenter defaultUserNotificationCenter];
  [center deliverNotification:userNotification];
}

Проблема в том, что NSUserNotificationCenter* center является нулевым. Я использую Qt 5.4.1, OS X 10.10. Основная функция выглядит так:

int main(int argc, char** argv) {
  QApplication a(argc, argv);
  App app;
  QQmlApplicationEngine engine;
  engine.rootContext()->setContextProperty("app", &app);
  engine.load(QUrl("qrc:/Main.qml"));
  return a.exec();
}

И я пытаюсь отправить уведомление по щелчку мыши

MouseArea {
  anchors.fill: parent
  onClicked: app.notify("Hello", "World")
}

У кого-нибудь есть идея, почему она не работает?

1 ответ

Наконец я нашел проблему. В моем файле Info.plist отсутствовал CFBundleIdentifier. После того, как я его добавил, приложение смогло зарегистрироваться в Центре уведомлений.

<key>CFBundleIdentifier</key>
<string>org.notifytestosx.app</string>
Другие вопросы по тегам