我使用SDWebImage安装了CocoaPods。
我的podfile是在https://github.com/rs/SDWebImage中编写的
platform :ios, '8.0'
use_frameworks!
pod 'SDWebImage', '~>3.7'当我导入SDWebImage时,它说
没有这样的模块'SDWebImage‘
我的Xcode版本是: version 7.2.1
发布于 2016-04-18 03:34:34
使用新的<YourProject>.xcworkspace而不是<YourProject>.xcodeproj。
xcworkspace包含project和pod install之后的pods。
发布于 2017-01-22 14:35:03
只需在导入代码中的任何新荚之前和之后构建项目。
发布于 2016-06-10 07:07:20
在
-ObjC中添加Other Linker Flags。

https://stackoverflow.com/questions/35899890
复制相似问题