如何在我的应用程序中添加静态创建的库..?
我已经创建了用于测试的静态库。 我用过: http://blog.boreal-kiss.net/2011/03/15/how-to-create-universal-static-libraries-on-xcode-4/#identifier_0_432
它创建成功地作为 test.a 现在我想在我的应用程序中添加这个库。
有人可以帮我解决这个问题吗?
I have created static library for testing.
I have used:
http://blog.boreal-kiss.net/2011/03/15/how-to-create-universal-static-libraries-on-xcode-4/#identifier_0_432
Its created sucessfully as test.a now i want to add this library in my application.
can anybody help me out for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
项目导航器
中的第一项)目标
构建阶段
将二进制文件与库链接< /code>
Xcode
.Project navigator
)target
Build Phases
Link Binary With Libraries
检查此链接
http:// www.amateurinmotion.com/articles/2009/02/08/creating-a-static-library-for-iphone.html
并选择链接二进制文件,直接依赖这会将您的静态库引用到您的 xcode 项目。
check this link
http://www.amateurinmotion.com/articles/2009/02/08/creating-a-static-library-for-iphone.html
and go for Link binary, Direct dependency this will refer you static library to your xcode project .