in my app I'm taking into account the clicks made on a botton . The number of clicks is displayed in a label and I used this code ... I wish that the number of clicks started not from 0 but from 12 and stop automatically at 30. How can I give these blocks in my action where I draw the NSInterger ?
Thank you all for the help
@ interface FFDettagliEsami () {
NSInteger FFVariabileNumerica_CFU_Votazione ;
}
@ end
@ implementation FFDettagliEsami
- ( IBAction ) FFAddVotazione : (id ) sender {
FFVariabileNumerica_CFU_Votazione + + ;
[ FFVotazioneLabel setText : [ NSString stringWithFormat : @ " % d", FFVariabileNumerica_CFU_Votazione ]] ;
}