OStack程序员社区-中国程序员成长平台

标题: iphone - iOS 4.3 更改了 UIImagePickerController 的相机覆盖 View 的转换 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 16:57
标题: iphone - iOS 4.3 更改了 UIImagePickerController 的相机覆盖 View 的转换

在 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-推荐答案


好的,找到了答案。 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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4