本文介绍了Swift CocoaLumberjack的全球进口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已使用Swift Pod正确配置了CocoaLumberjack.
I configured CocoaLumberjack properly using the swift pod.
我可以记录任何内容:
DDLogVervose("")
DDLogInfo("")
但是我必须在每堂课中使用它:
But I have to in every class to use it:
import CocoaLumberjack
推荐答案
在所有课程中都可以使用的唯一技巧"是使用pch(预编译头)并在那里导入CocoaLumberjack.这是一个导入到您所有文件中的标头.
The only "trick" to have it available in all your classes is to use a pch (precompiled header) and import CocoaLumberjack there. It's a header that gets imported in all your files.
这篇关于Swift CocoaLumberjack的全球进口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!