我正在努力解决一个问题,我正在开发一个测验应用程序,在这里我使用一个按钮的目的。在我的应用程序第一个问题我隐藏后退按钮,遵循以下代码。
if ((questionIndex=1))
{
backbutton.alpha=0;
}
在这个应用程序中,我使用代码转到下一个问题,
if (questionIndex < totalQuestionsCount - 1) {
[self loadQuestionsWithIndex:questionIndex + 1];
questionIndex++;
}
回到问题,
if (questionIndex > totalQuestionsCount - 1) {
[self loadQuestionsWithIndex:questionIndex + 1];
questionIndex--;
}
在转到下一个问题之后显示后退按钮,但是当我想再次回到第一个问题时,我需要后退按钮是隐藏但是这里显示。 这很简单,但我很困惑如何解决它,请你建议我。谢谢。
答案 0 :(得分:0)
除非你提出第一个问题,否则你应该这样做,所以检查问题1:
if (questionIndex > 0) {
[self loadQuestionsWithIndex:questionIndex + 1];
questionIndex--;
}
并按照评论中的建议使用button.hidden = YES;
或button.enabled = YES
。