gpt4 book ai didi

iOS:使用全屏图像显示模态视图 Controller

转载 作者:可可西里 更新时间:2023-11-01 04:41:49 25 4
gpt4 key购买 nike

我想在点击缩略图时显示全屏图像。现在我正在展示一个模态视图 Controller ,但图像不在屏幕中央:

enter image description here

这是我在模态视图 Controller 中用来呈现 View Controller 的代码:

UIViewController *modalCon = [[UIViewController alloc] init];

modalCon.view.backgroundColor=[UIColor blackColor];
modalCon.view.userInteractionEnabled=YES;

UIImageView *imageView = [[UIImageView alloc] initWithFrame:modalCon.view.frame];
imageView.contentMode=UIViewContentModeScaleAspectFit;
imageView.image=coverImage.image;

[modalCon.view addSubview:imageView];

UITapGestureRecognizer *modalTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismissModalView)];
[modalCon.view addGestureRecognizer:modalTap];

[self presentViewController:modalCon animated:YES completion:nil];

如何让这个图像在 View Controller 中居中?

最佳答案

你试过[image view setCenter:self.view.center]那一个根据屏幕居中,但如果你想以 modalCon 为中心,则将 self.view 替换为 modalCon.view

关于iOS:使用全屏图像显示模态视图 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20332950/

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