I want to know how we can change text on label with button click,i have 2 buttons named add and minus,if we click on add button,on each click ,it will increase from 1-10,and if we click on minus button ,it should reduce from 1-10,

I tried to do some stuff,which is below

-(IBAction) addQuantity
{
    for (int i=1;i<11; i++)
    {
        [m_label setText:[NSString stringWithFormat:@"%i",i]];
    }

}

please friends explain me how to proceed,

Regards Ranjit

link|improve this question

51% accept rate
feedback

1 Answer

up vote 0 down vote accepted
NSInteger counter = 0;
-(IBAction) addQuantity
{
    if (counter > 9 )
        return;
    [m_label setText:[NSString stringWithFormat:@"%d",++counter]];
}

-(IBAction) minusQuantity
{
    if (counter < 1 )
        return;
    [m_label setText:[NSString stringWithFormat:@"%d",--counter]];
}
link|improve this answer
hey thanks beryllium,how I can set a limit to only 10 numbers? – Ranjit Oct 13 '11 at 10:31
check answer now – beryllium Oct 13 '11 at 10:44
ok thank u very much :) – Ranjit Oct 13 '11 at 10:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.