gpt4 book ai didi

ios - CustomIOS7AlertView横向模式

转载 作者:行者123 更新时间:2023-11-28 21:17:49 26 4
gpt4 key购买 nike

我正在尝试使用 CustomIOS7AlertView 创建带有文本和图像的 CustomAlertview。因为我读到在添加图像时使用简单的 AlertView 无法设置最大高度...

我的问题是:我用图像创建了 CustomAlertView,但我不能以任何方式,对于 IPAD(横向),它以横向模式显示。它始终显示为垂直。

我试过旋转 customAlertview,但我没有成功......

谁能帮帮我?

这是我的代码:

UIView * vista =  [[UIView alloc] initWithFrame:CGRectMake(0, 0, 500, 500)];
UIImageView *imgView;

if (([[UIDevice currentDevice].model rangeOfString:@"iPad"].location!=NSNotFound)) {

imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 400, 400)];

} else {

imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 300, 300)];
}

[imgView setImage:img];
[vista addSubview:imgView];

CustomIOS7AlertView *alertView = [[CustomIOS7AlertView alloc] init];
[alertView setContainerView:vista];

[alertView show];

screenshot of the problem

谢谢!!!

最佳答案

在 CustomIOS7AlertView 中放置方向更改的观察者,然后在每次更改方向时使 View 正确定向。

引用:Detecting iOS UIDevice orientation了解有关方向更改通知的更多信息。

关于ios - CustomIOS7AlertView横向模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40893495/

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