what im trying to do is to have the app open up with the camera as the first screen. It isn\'t working and i don\'t know what im missing. If anyone can fill me in that would be
Try like that. Hope it helps you:
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init]; imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera; imagePicker.delegate = self; [self presentViewController:imagePicker animated:YES completion:nil];