Guys
The following Code is what I used to take a photo display it in an imageview and save it
// BUTTON CODE
- (IBAction)takePhoto:(id)sender {
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.allowsEditing =...