我的视图控制器中有隐藏和显示的视图。我想强制这些观点的方向。这是我的代码但我收到错误,我不知道为什么。
先谢谢你的帮助
-(NSUInteger)supportedInterfaceOrientations {
if (contentview.hidden = TRUE); {
return UIInterfaceOrientationMaskPortrait;
}
else {
return UIInterfaceOrientationMaskLandscape;
}
}
答案 0 :(得分:2)
将=
替换为比较运算符==
并在条件
;
-(NSUInteger)supportedInterfaceOrientations
{
if (contentview.hidden == TRUE) {
return UIInterfaceOrientationMaskPortrait;
}
else {
return UIInterfaceOrientationMaskLandscape;
}
}
答案 1 :(得分:1)
以这种方式尝试:
if (contentview.hidden == YES) {
}
答案 2 :(得分:1)
删除';'字符。 if语句不需要它们。