我有一个简单的测试 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")
}
有谁知道为什么它不起作用?