Reputation: 11751
After learning how to use Twitter within an iPhone app (with TWTweetComposeViewController), I would like to go one step further. When the "Tweet Search button" (in my app) is tapped, I would like a view showing up with the result of a given search (for example "water falls") within Twitter.
Is this possible? And if Yes, how?
Since it is possible to fire up Twitter (within an iOS app) and the search is also possible for someone using Twitter manually, I would think the answer to my first question is Yes. But at this point I have no idea concerning the answer to the second question.
Thanks for any relevant piece of information.
Upvotes: 0
Views: 697
Reputation: 311
See this iPhone SDK: First Steps With JSON Data Using the Twitter API http://mobile.tutsplus.com/tutorials/iphone/iphone-json-twitter-api/
Upvotes: 0
Reputation: 4513
TWTweet class has a property called completionHandler which returns if successful/fail.
i would use a uiWebview object that will display the main twitter site with a query that will search for example water falls.
Upvotes: 0