web-dev-qa-db-ja.com

ソースタイプ1は使用できません

IPhoneとiPadのアプリを持っていますが、UIPickerViewControllerUIPopoverController for iPadにロードしようとすると、「ソースタイプ1が利用できません」という例外が発生します。デバイスを使用しているにもかかわらず問題が発生する。

@try {
    if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera])  {
        UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];

        imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
        imagePicker.delegate = self;
        imagePicker.allowsEditing = NO;

        self.tempComp = component;
        if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
            [self presentModalViewController:imagePicker animated:YES];
        }else {
            // We are using an iPad
            popoverController=[[UIPopoverController alloc] initWithContentViewController:imagePicker];
            popoverController.delegate = self;

            [popoverController presentPopoverFromRect:component.bounds inView:component permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
        }
    }else{
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Camera Non Disponibile" message:@"La camera non è disponibile" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles: nil];
        [alert show];
    }
}
@catch (NSException *exception) {
    NSLog(@"Cattura eccezione %@", exception);
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Eccezione" message:[NSString stringWithFormat:@"%@", exception] delegate:self cancelButtonTitle:@"Ok" otherButtonTitles: nil];
    [alert show];
}
39
Allen Walker

これは、シミュレータでカメラを開いているためです...コードは[UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]および明らかにシミュレータにはcameraがありません...このような警告を与えてください、

 if (![UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {

    UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle:@"Error"
                                                          message:@"Device has no camera."
                                                         delegate:nil
                                                cancelButtonTitle:@"OK"
                                                otherButtonTitles: nil];

    [myAlertView show];

}
else{
     //other action
}

スウィフト3:

if !UIImagePickerController.isSourceTypeAvailable(.camera){

    let alertController = UIAlertController.init(title: nil, message: "Device has no camera.", preferredStyle: .alert)

    let okAction = UIAlertAction.init(title: "Alright", style: .default, handler: {(alert: UIAlertAction!) in
    })

    alertController.addAction(okAction)
    self.present(alertController, animated: true, completion: nil)

}
else{
     //other action
}

心配する必要はありません。デバイスで正しく動作します。

105
preetam

実際のデバイスでのみ、シミュレーターでカメラを使用することはできません。 Macにカメラがあっても、シミュレータにはカメラがありません。

代わりにフォトライブラリを使用してください

imagePicker.sourceType = .photoLibrary

の代わりに

imagePicker.sourceType = .camera
1
zaid afzal

IPhoneエミュレーターでアプリを実行しようとしていますか?

その場合、エミュレータはカメラ機能をサポートせず、フォトライブラリからの写真の取得のみをサポートします。多くの人がエミュレータでアプリをテストしようとしているため、自動フォールバックを組み込む必要があるようです。

1