Follow Up on Twitter using iPhone
Can User follow up on twitter using iphone application. I have done the functionality of sending tweet to twitter account. But now I have to do the follow up on twitter functionality.
I have an iphone application. I need to do the follow up on twitter functionality using the application in the info p开发者_StackOverflowage. In which if user clicks on follow up on twitter then user need to enter username or password and then user can follow up on twitter to the selected application.
Please help me to find out the solution. If possible then give me some reference. Thanks in advance......
Use MGTwitter Engine and invoke enableUpdatesFor method
-(IBAction)Followme:(id)sender
{
NSString *username = @"Twitter_user_name";
[_engine enableUpdatesFor:username];
}
MGTwitterEngine is a really good library for doing Twitter stuff on the iPhone. It comes with lots of examples on how to use it.
精彩评论