Rich Byden
Rich Byden

Reputation: 519

Integrating Twitter into iOS 4.3+ App

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

Answers (3)

Dave Batton
Dave Batton

Reputation: 8845

DETweetComposeViewController

Open source. Mimics TWTweetComposeViewController. Works with iOS 4 and later.

Upvotes: 3

brainray
brainray

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

Tom van der Woerdt
Tom van der Woerdt

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

Related Questions