I need to make an application that ,in my view there is a button for taking picture using camera in iphone. After taking the picture without coming to firstview go to the next view and there i need to show that picture in an uiimageview . I know how to take picture using camera and display it in an Uiimageview of the first view.
Firstview->buttoon for taking camera->secondview->uimageview with picture
i have the same scenario , try like this
when Button Click – push SecondViewController with Animated:NO then
in your viewDidAPpear call the Camera Class – then after finishing , set the image of the imageview in your didfinishpickimage delegate of Imagepickercontroller.
Hope this Works!