在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在使用cocoapod导入swift第三方时出现这样的错误: [!] Pods written in Swift can only be integrated as frameworks; add `use_frameworks!` to your Podfile or target to opt into using it. The Swift Pod being used is: 三方库名称 一开始我使用oc的配置方法 platform :ios, '8.0' target '<Your App Name>' do pod 'MJRefresh' end 结果报错了,后来通过翻译得知,只能是集成框架,需要添加“use_frameworks!”。更改后,如下: platform :ios, '8.0' use_frameworks! target '<Your App Name>' do pod 'MJRefresh' end |
请发表评论