这段保存联系人的代码有什么问题吗?

发布于 2024-09-05 16:57:40 字数 920 浏览 2 评论 0原文

我正在使用最新的诺基亚 Qt SDK。 我尝试添加联系人,但没有添加。这里缺少什么?

  // Construct contact manager for default contact backend
    QContactManager* cm = new QContactManager("simulator");
  // QContactManager* cm = new QContactManager("memory"); // i tried this, its also not working
  // Create example contact
    QContact example;
  // Add contact name
    QContactName name;
    name.setFirstName("John");
    name.setLastName("Doe");
    example.saveDetail(&name);

    // Add contact email address

    //QContactEmailAddress email;
   // email.setContexts(QContactDetail::ContextHome);
   //email.setEmailAddress(“[email protected]”);
   // example.saveDetail(&email);
   // Finally, save the contact details
    cm->saveContact(&example);
    delete cm;

谢谢

I am using the latest Nokia Qt SDK.
I have tried to add the contacts, it's not getting added.. what is missing here?

  // Construct contact manager for default contact backend
    QContactManager* cm = new QContactManager("simulator");
  // QContactManager* cm = new QContactManager("memory"); // i tried this, its also not working
  // Create example contact
    QContact example;
  // Add contact name
    QContactName name;
    name.setFirstName("John");
    name.setLastName("Doe");
    example.saveDetail(&name);

    // Add contact email address

    //QContactEmailAddress email;
   // email.setContexts(QContactDetail::ContextHome);
   //email.setEmailAddress(“[email protected]”);
   // example.saveDetail(&email);
   // Finally, save the contact details
    cm->saveContact(&example);
    delete cm;

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

↙温凉少女 2024-09-12 16:57:41

http://doc.qt.nokia.com/qtmobility-1.0-tp/qcontactmanager.html#availableManagers 检查可用管理器列表,并使用其中之一。也许然后它会起作用

http://doc.qt.nokia.com/qtmobility-1.0-tp/qcontactmanager.html#availableManagers check list of available managers, and use one of them. Maybe then it will work

指尖凝香 2024-09-12 16:57:41

cm->saveContact(&example) 返回 QList。这个列表中有返回值吗?

-jk

cm->saveContact(&example) returns QList<QContactManager::Error>. Are there any values return in this list?

-jk

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文