Skip to content

Instantly share code, notes, and snippets.

@darkseed
Created August 20, 2011 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save darkseed/1159375 to your computer and use it in GitHub Desktop.
Save darkseed/1159375 to your computer and use it in GitHub Desktop.
Check for photos and camera
// Method returns no, when the user doesn't have any photos
[UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary];
// Check for camera
- (BOOL) isVideoCameraAvailable
{
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
NSArray *sourceTypes = [UIImagePickerController availableMediaTypesForSourceType:picker.sourceType];
[picker release];
if (![sourceTypes containsObject:(NSString *)kUTTypeMovie ])
{
return NO;
}
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment