有没有办法在AppCode构建日志中的cocoapods中隐藏警告?我喜欢在我的代码中看到警告但是由于构建我包含的cocoapods而导致的大量警告使我很难看到我的警告。如果我可以配置AppCode来隐藏来自Pods目录中的构建源的警告,那将是很好的。
答案 0 :(得分:0)
试试这个:
inhibit_all_warnings!
我的Podfile以:
开头platform :ios, '8.0'
use_frameworks!
# ignore all warnings from all pods
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'