Reputation: 293
I am new baby to Xcode, was trying to learn twitter integration, downloaded sample twitter source code from sample code, but when i tried to run it, it says that there is no twitter framework, and when I try to add from 'Link Binary with Libraries' there is no twitter framework!! I am using Xcode 4.2 with ios 5. Is it possible to manually import twitter framework into my Xcode?? Please help me.
Upvotes: 2
Views: 1532
Reputation: 5876
TwitterKit provides wrappers for accessing the Twitter REST API. Get Fabric from here this will provide you wizard to add all appropriate frameworks for twitter.
Upvotes: 0
Reputation: 2942
Forget about the "Twitter.framework" from now on.
Apple has switched to "Social.framework" which was delivered with OS X 10.8 (Mountain Lion) today. This means "Twitter.framework" is deprecated now. It's very likely that "Twitter.framework" will be replaced by "Social.framework" in iOS 6, too.
All accounts are managed by "Accounts.framework" which is available on iOS 5 AND "Mountain Lion". If you need to implement "Twitter.framework" for iOS 5, keep this in mind to write "universal code".
Upvotes: 2
Reputation: 14941
It is easy to add the Twitter framework for an iOS 5 project. Please follow the instructions at https://dev.twitter.com/docs/ios/how-add-twitter-framework-your-ios-project
Upvotes: 1