iOS 中cocopods 如何去除第三方框架的黄色警告
2019-03-15 本文已影响80人
你买票吗
platform :ios,'8.0'
inhibit_all_warnings!
target 'AIBO sport' do
pod 'AFNetworking'
pod 'MBProgressHUD'
pod 'MJRefresh'
pod 'SDWebImage'
pod 'Bugly'
pod 'MJExtension'
pod 'PGPickerView'
pod 'SDCycleScrollView'
pod 'SCNavTabBarController'
pod 'PGDatePicker'
pod 'WechatOpenSDK'
pod 'IQKeyboardManager'
pod 'Masonry'
只需要在podfile里面添加
inhibit_all_warnings!
即可,在pod install之后,这样使用pod导入的第三方框架的警告就会被去掉。