在 iOS 4.3 上测试我的应用后,我注意到我的 UIImagePickerController 的相机叠加层有一个额外的转换,极大地拉伸(stretch)了内容。在 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;
任何想法我必须做些什么来摆脱添加的转换?
Best Answer-推荐答案 strong>
好的,找到了答案。 ios 4.3 要求camerOverlay 与屏幕一样大。所以我的 200x200 相机叠加层被放大了。
如果我换行:
cameraOverlay = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
到
cameraOverlay = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
它有效。
关于iphone - iOS 4.3 更改了 UIImagePickerController 的相机覆盖 View 的转换,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/5336318/
|