如何在通用应用程序(iphone和ipad)中使用zbar sdk?

发布于 2024-10-06 00:36:13 字数 509 浏览 4 评论 0原文

我正在创建通用应用程序(iPhone 和 iPad)。在我的应用程序中,我使用 ZBar SDK 进行条形码扫描。在 iPhone 中运行该应用程序时,它运行良好。但在 iPad 中,该应用程序无法打开。在控制台中它显示错误,

dyld:找不到符号:_CFXMLNodeGetInfoPtr 引用自:/System/Library/Frameworks/Security.framework/Versions/A/Security 预计在:/ios 4/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2.sdk/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 在/System/Library/Frameworks/Security.framework/Versions/A/Security

请参考我有什么解决方案吗?

I am creating the universal application(iPhone and iPad). In my application, i used ZBar SDK for barcode scanning. While running the application in iPhone it's working fine. But in iPad the application is not opening. In console it shows the error,

dyld: Symbol not found: _CFXMLNodeGetInfoPtr
Referenced from: /System/Library/Frameworks/Security.framework/Versions/A/Security
Expected in: /ios 4/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2.sdk/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
in /System/Library/Frameworks/Security.framework/Versions/A/Security

Please refer me is there any solution?

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

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

发布评论

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

评论(2

夏有森光若流苏 2024-10-13 00:36:13

如果您仔细阅读错误消息,它表示它希望在特定框架 (Security.framework) 中找到符号 (_CFXMLNodeGetInfoPtr)。您是否将此框架正确添加到您的项目中?

If you read your error message closely, it says it expected to find a symbol (_CFXMLNodeGetInfoPtr) in a particular framework (Security.framework). Did you add this framework to your project properly?

是伱的 2024-10-13 00:36:13

您必须将这些系统框架添加到您的项目中:

  • AVFoundation.framework
  • CoreMedia.framework
  • CoreVideo.framework
  • QuartzCore.framework
  • libiconv.dylib

You have to add these system frameworks to your project:

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