我有一个简单的测试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为null。我使用的是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")
}
有没有人知道它为什么不起作用?
答案 0 :(得分:0)
最后我发现了问题。我的Info.plist文件缺少CFBundleIdentifier。在我添加之后,应用程序能够在通知中心注册。
<key>CFBundleIdentifier</key>
<string>org.notifytestosx.app</string>