在iOS 4.3上测试我的应用程序后,我注意到我的UIImagePickerController的相机覆盖有一个额外的转换,极大地扩展了内容。在iOS 4.3之前,所有内容都显示正确。
这是我做的事情
imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
cameraOverlay = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
cameraOverlay.backgroundColor = [UIColor clearColor];
cameraOverlay.userInteractionEnabled = NO;
//add subviews to camera Overlay
imagePicker.cameraOverlayView = pauseButton;
我有什么想法可以摆脱增加的转变?
答案 0 :(得分:5)
确定找到了答案。 ios 4.3要求将camerOverlay与屏幕一样大。所以我的200x200相机覆盖层被放大了。
如果我改变了行:
cameraOverlay = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
到
cameraOverlay = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
它有效:)。