ian
ian

Reputation: 1685

How to create similar interface like the Photo application in iPhone?

How do I start an application which has a similar interface like the Photo application that ships with the iPhone? Specifically an interface with a UITabBarController and UINavigationController both present in the view.

Upvotes: 0

Views: 250

Answers (2)

JWD
JWD

Reputation: 12218

I would check out the Three20 open-source iPhone framework. More specifically their TTPhotoViewController.

github - Three20

alt text

Upvotes: 0

jkilbride
jkilbride

Reputation: 1353

To use both tab and navigation together, you create a tab bar application and change the class of its views from UIViewController to NavigationController. Have a look at this tutorial, it should get you started.

Upvotes: 1

Related Questions