消除安装第三方库错误、警告


消除错误

在Podfile文件中添加:

use_frameworks!

消除警告


在Podfile文件中添加:

inhibit_all_warnings!

有时也可能造成意想不到的报错,所以我们可以对指定库取消其警告

pod 'xxxx', :inhibit_warnings => true

原文:离离乱惑

个人博客:https://maofourteen.github.io

你可能感兴趣的:(消除安装第三方库错误、警告)