2015-10-13 92 views
0

有沒有辦法在AppCode構建日誌中隱藏cocoapods中的警告?我喜歡在我的代碼中看到警告,但構建我包含的cocoapods導致的大量警告使我很難看到我的警告。如果我可以將AppCode配置爲隱藏來自Pods目錄中源代碼的警告,那將會很好。有沒有辦法在AppCode中隱藏cocoapods中的警告?

回答

0

試試這個:

platform :ios, '8.0' 
use_frameworks! 

# ignore all warnings from all pods 
inhibit_all_warnings! 

source 'https://github.com/CocoaPods/Specs.git' 

inhibit_all_warnings! 

我Podfile開頭

相關問題