没有这样的模块'SDWebImage'

问题描述 投票:1回答:3

我用SDWebImage安装了CocoaPods

我的podfile就像它写在https://github.com/rs/SDWebImage中一样

platform :ios, '8.0'
use_frameworks!
pod 'SDWebImage', '~>3.7'

当我导入SDWebImage它说

没有这样的模块'SDWebImage'

我的Xcode版本是:版本7.2.1

ios swift2 cocoapods sdwebimage
3个回答
4
投票

使用新的<YourProject>.xcworkspace而不是<YourProject>.xcodeproj

xcworkspace之后,project包含你的pods和你的pod install


2
投票

只需在代码中导入任何新pod之前构建项目


1
投票

-ObjC添加Other Linker Flags

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.