我试图通过将Lumberjack.Xcode文件拖放到我的项目中来将CocoaLumberjack集成到我的iOS项目中。这很好,但现在我的项目有9个新目标。我不需要所有这些开销。所以我的问题是,如何减少目标数量以适应iOS所需的内容?
似乎每次我只拖动它缺少所需文件的移动项目。根据我的研究,似乎没有与将Lumberjack专门集成到iOS相关的最新教程,这似乎是一种常用的工具,因此很奇怪。对所有这些都是新手,这很麻烦,我会很乐意帮助。
其他信息:我正在进行手动安装,因为Cocoapods不适合我。我正在关注他们的安装指南: Installation Guide
手动安装指南的第一行是
git submodule add git@github.com:CocoaLumberjack/CocoaLumberjack.git
我不想在我的项目中添加另一个子模块,所以我将Lumberjack.Xcode拖放到我的项目中。
答案 0 :(得分:2)
您可以简单地克隆repo并将其添加到项目中,而不是将其添加为子模块。其余说明保持不变。因此,请将上面引用的行替换为:
git clone git@github.com:CocoaLumberjack/CocoaLumberjack.git
rm -r CocoaLumberjack/.git/
然后按照安装指南中的其余说明进行操作。
答案 1 :(得分:2)
Before I learned how to use CocoaPods, I used to just clone the repo and copy all of the .h and .m files into my project, ensuring they're added to the correct target.
The only issue you have to make sure to avoid is missing one or more files. Not 100% sure with CocoaLumberjack, but I'd look at just adding everything from here:
https://github.com/CocoaLumberjack/CocoaLumberjack/tree/master/Classes
答案 2 :(得分:0)