如何忽略 cocoapods 引入的警告信息

在引入库的时候,在其后添加 inhibit_warnings => true 即可
使用方式如下:

platform :ios, '9.0'

target 'Demo' do

    pod 'Masonry', '~> 1.0.2',:inhibit_warnings => true

end

你可能感兴趣的:(如何忽略 cocoapods 引入的警告信息)