Xcode——将一个静态库嵌入到另一个静态库中?
是否可以以这样的方式执行此操作:父项目不需要任何引用子库的设置——仅引用父库?
(例如,我希望自动选取标头搜索路径)。
Is it possible to do this in such a way that the parent project does not need any settings that refer to the sub-library -- only to the parent library?
(For example, I want header search paths to be picked up automatically).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找一个框架,而不是实际上的静态库(当您使用静态库时,您将始终需要符号引用,即标头)
Apple 为我们提供的解决方案是框架。
您可以查看此 GitHub 项目,其中包含用于再次创建 iOS 框架的 Xcode 4 模板。
祝你好运!
I think you are looking for a Framework, not actually a static library ( You will always need the symbol references aka headers when you use static libraries )
The solution that Apple gave us, is Frameworks.
You can checkout this GitHub project which contains an Xcode 4 template for creating iOS frameworks again.
Good luck!