how to display twitter feeds in iphone sdk

♀尐吖头ヾ 提交于 2019-12-12 08:17:59

问题


how to display twitter feeds of a specific user account in iphone sdk?


回答1:


you can fetch tweets of specific user from below link:

https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=username&count=25&page=1

and use any parser like NSXMLParser to parse the above feed. Let me know if you need any more details.




回答2:


This is very generic question. However for starters you can do the following

  1. Authenticate your app using Oauth
  2. Check out the APIs to fetch feeds from the twitter api site.
  3. You can create custom widgets to display or use uitableview to add the data.


来源:https://stackoverflow.com/questions/5455057/how-to-display-twitter-feeds-in-iphone-sdk

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!