gpt4 book ai didi

ios - 无法使用 CoreFoundation 从自定义框架访问资源包

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:19:39 28 4
gpt4 key购买 nike

我做了什么

我已经构建了一个自定义 iOS 框架,我们称之为 CustomFramework.framework 以及一些名为 CustomFramework.bundle 的 sqlite 文件的随附资源包。我已将我的框架和资源包添加到另一个项目并成功构建。

我想做什么

我正在尝试使用 CoreFoundation 访问资源包。然后我想选择一个特定的 sqlite 文件并打开它。

出了什么问题

我的框架中有一个名为ResourceHelper.cpp 的文件。这是我要打开 sqlite 文件的地方。我正在尝试获取对 bundle CustomFramework.bundle 的引用。为此,我有这一行:

CFBundleRef mainBundle = CFBundleGetBundleWithIdentifier(CFSTR("com.mycompany.CustomFramework"));

在我的 CustomFramework-Info.plist 中,Bundle identifer 字段是 com.mycompany.CustomFramework。这行代码返回NULL;在调试器中它看起来像 mainBundle = (CFBundleRef) 0x0

为什么找不到我的框架资源包?

谢谢

最佳答案

最终起作用的是我必须将包名称附加到主包路径。这是它的工作原理。

std::string dbName = "database";
std::string resourcePath = "CustomFramework.bundle/";

CFBundleRef mainBundle = CFBundleGetMainBundle();
CFStringRef cf_dbName = CFStringCreateWithCString(NULL, dbName.c_str(), kCFStringEncodingUTF8);
CFStringRef cf_path = CFStringCreateWithCString(NULL, resourcePath.c_str(), kCFStringEncodingUTF8);

CFURLRef url = CFBundleCopyResourceURL(mainBundle, cf_dbName, CFSTR("sqlite"), cf_path);

关于ios - 无法使用 CoreFoundation 从自定义框架访问资源包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26742304/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com