how to display twitter feeds of a specific user account in iphone sdk?
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- back button text does not change
相关文章
- 现在使用swift开发ios应用好还是swift?
- Could I create “Call” button in HTML 5 IPhone appl
- TCC __TCCAccessRequest_block_invoke
- xcode 4 garbage collection removed?
- Unable to process app at this time due to a genera
- How can I add media attachments to my push notific
- How do you detect key up / key down events from a
- “Storyboard.storyboard” could not be opened
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.
This is very generic question. However for starters you can do the following