gpt4 book ai didi

ios - 设置纵向和横向的 UIView 位置

转载 作者:行者123 更新时间:2023-11-29 12:47:58 26 4
gpt4 key购买 nike

我已经创建了一个加载器 View 。我已经使用以下代码设置了指示器的位置:

    loadingView = [[UIView alloc]initWithFrame:CGRectMake(455, 225, 80, 80)]

如何为肖像模式设置不同的位置?谢谢

最佳答案

if([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortrait)
{
//portrait
loadingView = [[UIView alloc]initWithFrame:CGRectMake(225, 455, 80, 80)];//any position you want
}
else
{
//landscape
loadingView = [[UIView alloc]initWithFrame:CGRectMake(455, 225, 80, 80)];//any position you want
}

关于ios - 设置纵向和横向的 UIView 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23156008/

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