gpt4 book ai didi

iOS If Else 语句 - 旋转 View

转载 作者:行者123 更新时间:2023-11-28 19:05:44 24 4
gpt4 key购买 nike

我的 View Controller 中的 View 会隐藏和显示。我想强制这些观点的方向。这是我的代码,但我收到一个错误,我不确定为什么。

在此先感谢您的帮助

-(NSUInteger)supportedInterfaceOrientations {
if (contentview.hidden = TRUE); {
return UIInterfaceOrientationMaskPortrait;
}
else {
return UIInterfaceOrientationMaskLandscape;
}
}

最佳答案

用比较运算符== 替换单个= 并在if 条件之后删除;

 -(NSUInteger)supportedInterfaceOrientations
{
if (contentview.hidden == TRUE) {

return UIInterfaceOrientationMaskPortrait;
}
else {
return UIInterfaceOrientationMaskLandscape;
}
}

关于iOS If Else 语句 - 旋转 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20574621/

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