Do you know how to show the camera display in my application with the navigation bar, back, forward, delete controls? Thankz: D
http://three20.info/ is your best bet, I think ...
You can use UIImagePickerController:
Example:
UIImagePickerController *picker = [[UIImagePickerController alloc] init]; picker.delegate = self; picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum; [self presentModalViewController:picker animated: YES];
Remember to implement the delegate protocol.
Here is a link to Apple docs: http://developer.apple.com/library/ios/#documentation/uikit/reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html