如何将核心数据添加到 iOS 静态框架?
我在 XCode 中开发静态库。我想通过使用核心数据模型(扩展名为 .xcdatamodeld 的文件)来使用核心数据。
当我想将其添加到项目中时,无法检查“获取信息”字段,因此它将在该框架中使用。
我应该如何添加这些数据,以便框架能够使用它。
谢谢,保重:)
I develop Static Library in XCode. I want to use Core Data by using Core Data model (file with extension .xcdatamodeld).
When I want to add it to project, it's impossible to check in "Get info" field, so it'll be used in this framework.
How should I add such data, so framework will be able to use it.
Thanks and take care plp :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将 Core Data 添加为框架以访问其标头,就像处理任何其他(应用程序)项目一样。然后,您的用户在构建应用程序时还需要将其添加为框架。
如果您想的话,您不能也不应该静态添加核心数据。
You add Core Data as a Framework to get access to its headers, like you would with any other (application) project. Your users will then also need to add it as a Framework when they build their apps.
You can't and shouldn't add Core Data statically, if you're thinking of it.