I install TwitterCore, TwitterKit, and Fabric via CocoaPods.
// in the .podspec
ss.dependency 'TwitterCore', '~> 1.12'
ss.dependency 'TwitterKit', '~> 1.12'
ss.dependency 'Fabric', '~> 1.5'
After pod install, I tried to compile my project but it failed. It shows an error in the Xcode:
// Twitter.h
@import TwitterCore; [!] Module 'TwitterCore' not found
I check my Pods folder and all of those framework are installed indeed.
By the way, If I downgrade TwitterCore and TwitterKit to version 1.9.0, everything works well, and the compilation succeeds.