简体   繁体   中英

how to check video camera is available on iPhone

有没有办法检查iPhone上可用的摄像头功能?

Most of the camera related availability support is exposed through the UIImagePickerController . A bit tricker thing is detection of Video Camera. You can detect the presence of a video camera in a iOS device using the following method.

- (BOOL) isVideoCameraAvailable
{
    UIImagePickerController *picker = [[UIImagePickerController alloc] init];
    NSArray *sourceTypes = [UIImagePickerController availableMediaTypesForSourceType:picker.sourceType];
    [picker release];

    if (![sourceTypes containsObject:(NSString *)kUTTypeMovie ]){

        return NO;
    }

    return YES;
}

Found this code (based on UIDevice) which helped me with this issue:

https://github.com/MugunthKumar/DeviceHelper

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM