tags:

views:

201

answers:

6

Does Twitter has the iPhone SDK which has a login popup like facebook iOS SDK?

A: 

No, it doesn't. You'll have to implement your own.

Alexsander Akers
+5  A: 

It doesn't have. What I can recommend you is to use this DDSocialDialog library (just 4 classes) and you can have something similar

vodkhang
A: 

Sorry, they don't. But, as facebook, their REST API can return JSON payload and that's very easy to retrieve using NSURLConnection and parse using the JSON-Framework that you van find here

VdesmedT
A: 

No Twitter does not have the login pop up as facebook has. You have to create your own login page. or you can get few from the open source.

Matt Gemmell and Craig Hockenberry, developer of Twitterific created MGTwitterEngine, an easy-to-use library of classes providing methods that make it extremely easy for the developer to access the Twitter API. see I believe there are a few other libs out there, but it's just as easy to roll your own because like Macha says above Twitter's API gives you the option to have the feeds in XML or JSON format.

Try this link MGTwitterEngine

hAPPY cODING...

Suriya
Yeah, that library is really good but doesn't answer the question:)
vodkhang
The library does not answer your question. Your question is alread answered by me and is highlighted. thats `NO`
Suriya
A: 

Look for this source code:

http://github.com/bengottlieb/Twitter-OAuth-iPhone

Thanks to Ben Gottlieb.

It opens the login page as a modal view.

Madhup
A: 

I've seen in one iPad game Twitter dialog that looks like Facebook's, however, it is not as simple as DDSocialDialog. Can anyone recognize any SDKs from here or is it something proprietary?

connect to twitter screenshot

Dmitry
Hmm...This is what I expected actually...
sza