前言:
在Swift项目使用CocoaPods和OC项目略有不同, 如果按OC项目使用CocoaPods终端会出现上述的错误.
报错内容:
Error"Pods written in Swift can only be integrated as frameworks; add
use_frameworks!
to your Podfile or target to opt into using it."
解决办法:
在Podfile文件中添加"use_frameworks!"(引号内的代码)即可:
然后使用终端命"pod update --verbose --no-repo-update"令更新即可, 直接用"pod update"会比较慢.