问题
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
- Authenticate your app using Oauth
- Check out the APIs to fetch feeds from the twitter api site.
- 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