Save a Video that I record in my app
I am succeeding in understanding how to make a camera app in my learning journey:-) The only thing I am stuck with is saving a video that I have recorded. I am able to save a photo, but the same does not work for videos. So I think I have almost got it with the help of iBrad Apps. got this code: -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info { NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType]; [self dismissModalViewControllerAnimated:YES]; if ([mediaType isEqualToString:(NSString *)kUTTypeImage]) {