0

我试图隐藏 UIButton 但它没有被隐藏。在相同的代码中,我成功地隐藏了一个 UILabel。我的代码有什么错误?

if ([typeOne isEqualToString:@"DDWC"]) {

    questionButtonTwo.hidden=YES;
    questionButtonTwoTwo.hidden=YES;
    questionButtonTwoThree.hidden=YES;
    questionButtonTwoFour.hidden=YES;
    questionButtonTwoFive.hidden=YES;
    questionButtonTwoSix.hidden=YES;
    questionButtonTwoSeven.hidden=YES;
    questionButtonTwoEight.hidden=YES;
    checkLableTwo.hidden=NO;
    checkLableTwoTwo.hidden=NO;
    checkLableTwoThree.hidden=NO;

    checkLableTwoFour.hidden=NO;

    checkLableTwoFive.hidden=NO;
    checkLableTwoSix.hidden=NO;
    checkLableTwoSeven.hidden=NO;
    checkLableTwoEight.hidden=NO;

    }
4

1 回答 1

0

您是否为该按钮定义了一个 IBOutlet 并将其连接到 Interface Builder 中的实际按钮?如果没有,请尝试一下。

于 2012-09-26T09:11:41.847 回答