2

我有一个简单的测试 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")
}

有谁知道为什么它不起作用?

4

1 回答 1

2

最后我发现了问题。我的 Info.plist 文件缺少 CFBundleIdentifier。添加后,应用程序可以在通知中心注册。

<key>CFBundleIdentifier</key>
<string>org.notifytestosx.app</string>
于 2015-04-03T08:43:50.477 回答