0

Hello I implement different library from cocoapod and install Podfile

but I want to ignore the warnings

Ahmad Mustafa
  • 521
  • 1
  • 3
  • 12

1 Answers1

1
# 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.

Dhaval Raval
  • 594
  • 2
  • 7