Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a new app that will read data from twitter. I can read the tweets successfully, but if the tweet has a link, the app should read the content of that link (the content of the page on that link) and display it instead of the tweet content (like what happened in the FLIPBOARD APP).

Is there any class that do this automatically?

share|improve this question

1 Answer

There is nothing built in that will do auto previews for you, but you can always scan the tweet for links when received, then fire off some asynchronous NSURLConnections to fetch the website content, adding it to the tweet when done.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.