我正在使用iOS 7的應用程序工作。有時,當我打開相機時,我遇到了iOS 6設備中的問題。它凍結在相機快門上。雖然我將ARC設置爲YES。我無法理解問題在哪裏?應用程序在相機快門上死機
我使用的代碼爲這個
self.cameraUI = [[UIImagePickerController alloc] init];
self.cameraUI.sourceType = UIImagePickerControllerSourceTypeCamera;
self.cameraUI.mediaTypes = [UIImagePickerController availableMediaTypesForSourceType:UIImagePickerControllerSourceTypeCamera];
self.cameraUI.cameraCaptureMode = UIImagePickerControllerCameraCaptureModePhoto;
self.cameraUI.navigationBarHidden = YES;
self.cameraUI.showsCameraControls = NO;
self.cameraUI.wantsFullScreenLayout = YES;
self.cameraUI.delegate = self;
[self.cameraView addSubview:self.cameraUI.view];
我不認爲任何人都可以在沒有看到您的代碼的情況下爲您提供幫助。或者它凍結的部分。 –
好的,我編輯了問題 –