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
If you are using Carthage, the frameworks in building setting usually stay in
$(PROJECT_DIR)/Carthage/Build/iOS
If you run carthage update --platform ios --no-build
(to save time) the files inside Build folder will not be reacreated, then the modules will no available to XCode.
In my case, I have run carthage update --platform ios
, then my problem was solved.