tags:

views:

203

answers:

1

How to open Photo Library in First screen as pushviewcontroller in tabBarApplication.

A: 

Make a parent view controller, and in viewDidLoad for that controller:

[self pushViewController:photosViewController animated:NO].

By the time the view is displayed, the photo library view controller will be frontmost.

iKenndac