iOS如果其他声明 - 旋转视图

时间:2013-12-13 19:38:49

标签: ios error-handling rotation boolean

我的视图控制器中有隐藏和显示的视图。我想强制这些观点的方向。这是我的代码但我收到错误,我不知道为什么。

先谢谢你的帮助

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

3 个答案:

答案 0 :(得分:2)

=替换为比较运算符==并在条件

之后删除;
 -(NSUInteger)supportedInterfaceOrientations
    {
    if (contentview.hidden == TRUE) {

        return UIInterfaceOrientationMaskPortrait;
    } 
    else {
        return UIInterfaceOrientationMaskLandscape;
       }
    }

答案 1 :(得分:1)

以这种方式尝试:

if (contentview.hidden == YES) {

}

答案 2 :(得分:1)

删除';'字符。 if语句不需要它们。