Reputation: 519
I'm trying to integrate Twitter with my App right now. I have successfully set up the iOS 5 TWTweetComposeViewController, but this does not work on iOS 4.3. What's the best method to also integrate Twitter posting into iOS 4.3?
Upvotes: 3
Views: 3648
Reputation: 8845
Open source. Mimics TWTweetComposeViewController. Works with iOS 4 and later.
Upvotes: 3
Reputation: 12884
Sharekit is a framework that may help you to setup Twitter on iOS version pre 5. If you take a first look at Sharekit, it may look like you only can use it as a complete framework. But read on: you can use any of the fractions (Twitter, Facebook etc) of Sharekit to connect with your own GUI.
Upvotes: 1
Reputation: 29975
Use a custom library and implement the tweet screens yourself. Alternatively you could redirect the user to a twitter://
URL which will open the Twitter application, or just open a Web Intent. http://dev.twitter.com
Upvotes: 1