Reputation: 41
When you tap a link on the Facebook app it links to an in app browser, probably rendering via safari. I'm just wondering how do i use this in my app?
Upvotes: 4
Views: 111
Reputation: 338
Do you need more than a UIWebView? That will render the page, and allows links on the page to be followed. You can also tell the UIWebView to go back and forward, and reload. You can use that to add those functions yourself.
Ref: UIWebView Class Reference
Upvotes: 0
Reputation: 3321
The Facebook for iPhone app uses a self written framework named three20. The TTWebController provides a reduced in app browser. It's open source and pretty easy to use. Just give it a try!
Upvotes: 3