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 回答