我正在研究项目,我受到了打击,我有一个按钮和两个图像![在此输入图像描述] [1] 当我按下按钮时,标签应该更改为+1,因为当前图像被选为p图像。 如果缺席,标签文本应更改为-1并继续 帮帮我这个。
答案 0 :(得分:0)
你可以有一个布尔
bool isPresent;
int presentCount = 0;
int absentCount = 0;
在viewDidLoad
中将其设为false
现在按下按钮的方法
- (IBAction)button_pressed:(id)sender {
if(isPresent == true){
// change your button image
present count --;
absentCount ++;
// set this count on your label text
}
else{
present count ++;
absentCount --;
}
}
我希望我理解你的问题,这就是你正在寻找的解决方案。