1

ランドスケープモードでのみCameraoverlayビューを開きたい...しかし、このコードはBAD_Excessを与えます。

{      
self.imagePickerController = [[[UIImagePickerController alloc] init ] autorelease];
imagePickerController.view.frame=CGRectMake(0, 0, 1024, 768);
self.imagePickerController.delegate = self;
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];

//Set Notifications so that when user rotates phone, the orientation is reset to landscape.
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];

//Refer to the method didRotate:   
[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(didRotate:)
                                             name:@"UIDeviceOrientationDidChangeNotification" object:nil];

//Set the picker source as the camera   
self.imagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;

//Bring in the picker view   
[self presentModalViewController:self.imagePickerController animated:YES];
}

この問題を解決してください...事前に感謝します

4

1 に答える 1

0

製品に移動>スキームを編集>ゾンビを有効にする

これにより、例外に関する詳細な説明が得られます。

于 2012-05-30T13:07:31.750 に答える