Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No such module 'SDWebImage'

I installed SDWebImage using CocoaPods.

My podfile was as it is written in the https://github.com/rs/SDWebImage

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

when I import SDWebImage it says

No such module 'SDWebImage'

my Xcode version is: Version 7.2.1

like image 617
tmac99 Avatar asked Mar 09 '16 18:03

tmac99


1 Answers

Use the new <YourProject>.xcworkspace instead of <YourProject>.xcodeproj.

The xcworkspace contains your project and your pods after pod install.

like image 65
Haroldo Gondim Avatar answered Sep 30 '22 06:09

Haroldo Gondim