JRD
JRD

Reputation: 41

What does the Facebook iPhone app use to display pages in an app?

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

Answers (3)

Keith
Keith

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

cem
cem

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

PengOne
PengOne

Reputation: 48398

Use a UIWebView -- the documentation contains many examples.

Upvotes: 1

Related Questions