Hi,
I've created a camera application for iPhone and now I sit and polish the last of it. My application is a collage application where the user can take multiple pictures in a row.
As it is today I have a customized camera view that contains one UIButton for taking the pictures and one UIButton for getting back to the main view. Now I want to replace these buttons with a toolbar.
The problem is that my application is design for landscape orientation and the camera control can only show in portrait mode. This makes the design of the GUI a little bit tricky and I now want to move away from having the buttons in the view to having them placed in a toolbar. When you initialize the camera (UIImagePickerController) you can set a bunch of different parameters and one of them is UIImagePickerController.toolbarHidden. If I set the value to NO it will show an empty toolbar and my question here is, how do I add items to this toolbar?
I've tried different solutions such as [self setToolbarItems

NSArray*)], [self.toolbar setItems

NSArray*)] etc. etc. without any luck.
All help is appreciated!
Regards, drisse