IT

iOS 시뮬레이터 카메라에 액세스하는 방법

itgroup 2023. 7. 12. 23:42
반응형

iOS 시뮬레이터 카메라에 액세스하는 방법

저는 카메라 앱을 만들고 있습니다.시뮬레이터에서 앱을 테스트해야 하는데 iOS 시뮬레이터 카메라에 접속할 수 없습니다.

시뮬레이터에서 사용할 수 없는 경우 시스템 카메라에 액세스해야 합니다.그것이 가능한가요?

나는 노력했다.UIImagePickerController하지만 효과가 없습니다.

제가 시도한 코드는 아래와 같습니다.

self.imagePicker = [[UIImagePickerController alloc] init];  
UIImagePickerControllerSourceType sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
self.usingPopover = YES;
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {
sourceType = UIImagePickerControllerSourceTypeCamera;
self.usingPopover = NO;
}
[self.imagePicker setSourceType:sourceType];
self.imagePicker.allowsEditing = NO;
self.imagePicker.delegate = self;
if (sourceType != UIImagePickerControllerSourceTypeCamera) {
self.popover = [[UIPopoverController alloc] initWithContentViewController:self.imagePicker];
self.popover.delegate = self;
[self.popover presentPopoverFromRect:popoverFrame inView:self.view  
permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
} else {
[self presentModalViewController:imagePicker animated:YES];    
}

시뮬레이터 카메라로 사용할 개발 기계의 카메라에 액세스할 수 없습니다.카메라 기능은 다음에서 사용할 수 없습니다.iOS버전 및 모든 시뮬레이터에서.카메라 테스트 목적으로 실제 장치를 사용해야 합니다.

시뮬레이터에 카메라가 없습니다.카메라에 액세스하려면 장치가 필요합니다.당신은 시뮬레이터에서 카메라를 테스트할 수 없습니다.당신은 사진과 비디오 갤러리만 확인할 수 있습니다.

언급URL : https://stackoverflow.com/questions/25486080/how-to-access-ios-simulator-camera

반응형