在 Xcode 4 中创建静态库
我不知道如何在 Xcode 4 中创建可可触摸静态库。
我已经在 Xcode 3 中创建了静态库并且工作正常。我使用了本教程。感谢您的帮助。
第一步,我创建 cocoa touch 静态库
接下来我们可以在产品目录中看到我们的静态库。但现在这个未编译的库。
下一步我添加一些 Objective-C 类。这个类将执行各种操作,例如显示 NSLog 消息。
然后我确保编译源中存在此类
之后,我构建目标
现在我使用这个静态库在其他项目中,但是当我使用它时,将文件与静态库链接时出现错误。
I can't figure out how to create a cocoa touch static library in Xcode 4.
I've created static library in Xcode 3 and it worked fine. I used this tutorial. Thanks for the help.
First step I create cocoa touch static library
Next we can see our static library in product directory. But now this uncompiled library.
Next step I add some objective-c class. This class is will perform various actions, for example show NSLog messages.
Then I made sure there is this class exist in compile source
After that I build my target
Now I use this static library in other projects, but when I use it I get a error when linking files with my static library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
打开 Xcode >创建新项目> iOS>框架与图书馆> Cocoa Touch静态库
Open Xcode > Create New Project > iOS > Framework & Library > Cocoa Touch Static Library
我自己也在努力解决这个问题,并且在另一个SO线程,发现了这个:
iOS 通用框架
I struggled with this myself and, on another SO thread, found this:
iOS-Universal-Framework
要创建静态库,您可以尝试通过此处的示例来弄清楚: http://www.raywenderlich.com/41377/creating-a-static-library-in-ios-tutorial
To create an static library you can try to figure out with example example here: http://www.raywenderlich.com/41377/creating-a-static-library-in-ios-tutorial