gpt4 book ai didi

iphone - 数据源为 UIImagePickerControllerSourceTypeCamera 的 UIImagePickerController 的 View 移动问题

转载 作者:行者123 更新时间:2023-12-03 19:46:39 25 4
gpt4 key购买 nike

在我的应用程序中,我为用户提供两个上传照片的选项:

  1. 拍照
  2. 从库中选择

我在委托(delegate)方法中的 modalViewController 中展示这张照片 - imagePickerController: didFinishPickingImage editorInfo: 通过创建带有 imageview 的 viewController 并在其中加载所选图像。

使用照片库一切顺利,但是在从相机拍照时,每当我在拍照后在委托(delegate)方法中启动 modalViewController 时, View 都会向下移动近 20 像素。此后,每当我向后导航时,所有 View 都会发生变化。

编辑:

    - (void)imagePickerController:(UIImagePickerController *)_picker1_ didFinishPickingImage:(UIImage *)img editingInfo:(NSDictionary *)editInfo {

imageUploadView = [[UIViewController alloc]initWithNibName:nil bundle:nil];
imageUploadView.view.frame = CGRectMake(0, 0, 320, 480);
[imageUploadView.view setBackgroundColor:[UIColor blackColor]];
imageUploadView.view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

image = [[UIImageView alloc]init];
image.frame = CGRectMake(0, 60, 320, 270);


//I'm Adding different views like toolbar and barbuttons here

[_picker1_ presentModalViewController:imageUploadView animated:YES];

[image setImage:img];
}

我真的被困在这里了。

有人可以帮忙吗?这真的很紧急。

提前致谢。

最佳答案

在呈现 modalViewcontroller 之前隐藏状态栏并尝试一下。

关于iphone - 数据源为 UIImagePickerControllerSourceTypeCamera 的 UIImagePickerController 的 View 移动问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3311056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com