I\'m currently coding in Swift, and I\'ve got an error:
No such module Social
But I don\'t understand, because the module is in
The following steps worked for me.
"pod update"
in terminal.xcworkspace
and build again.Please compare this screenshot with your build setting. It may this work. Go to the framework search path:
Be sure, that Find implicit Dependencies
in Build options in Scheme is on!
I had the same issue using Cocoapods and Swift. I didn't notice the following lines in the Podfile:
# Uncomment this line if you're using Swift
# use_frameworks!
So, all I had to do was change it to:
# Uncomment this line if you're using Swift
use_frameworks!
...aaand it worked :)
If you're building for a platform like tvOS, make sure you have an Apple TV (i.e. matching) simulator selected.
Building a tvOS app with an iOS simulator selected gave me exactly this error. Spent the better part of an hour looking for all sorts of build issues... doh.
I found that the Import Paths
in the Build Settings
was wrong for a custom (MySQL) module. After pointing that to the right direction the message was gone.