iOS 如何去除第三方框架的黄色警告

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导入的第三方框架的警告就会被去掉。

原文链接: http://blog.sina.com.cn/s/blog_13689d7d40102xas9.html

猜你喜欢

转载自blog.csdn.net/csdn2314/article/details/80144106