I have a view which pushes a new view onto the screen.
When the new view is shown, there is no back button in the navigation controller.
I have the following in one view

and I push a new view using the following code
[photoViewController setAsset:[assets objectAtIndex:(cell.rowNumber * 4) + index]];
[[self navigationController] pushViewController:photoViewController animated:YES];
[photoViewController release];
When the view appears the following is visible

How do I add the back button and where would I add the same share button to the bar in the second view?
Thanks. :)