Reputation: 531
Hello I implement different library from cocoapod and install Podfile
but I want to ignore the warnings
Upvotes: 0
Views: 192
Reputation: 594
# example to ignore all warnings from all pods
inhibit_all_warnings!
# example to ignore warnings from a specific pod
pod 'Alamofire', :inhibit_warnings => true
you have to add this line in your podfile.
Upvotes: 1