Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im having four buttons in my application,im getting the button title from array ,I want to change the 4 button titles whenever i click any of the button,But here the clicked button title only changed ,here my code,

-(IBAction)setting:(id)sender
{
int value = rand() % ([arraytext count] -1) ;
UIButton *mybuton = (UIButton *)sender;
[mybuton setTitle:[arraytext objectAtIndex:value] forState:UIControlStateNormal];
}

Updated

-(IBAction)answersetting:(id)sender
{

UIButton *mybutton = (UIButton *)sender;
static int j = 0;
if(sender == mybutton)
    j++;
if (j >= arcount)
{
    j = 0;
}
else if(j < 0)
{
    j = arcount - 1;
}

CATransition *transition = [CATransition animation];
transition.duration = 1.0f;
transition.timingFunction = [CAMediaTimingFunction    functionWithName:kCAMediaTimingFunctionEaseOut];
transition.type = kCATruncationMiddle;

[animage.layer addAnimation:transition forKey:nil];    
animage.image=[arimage objectAtIndex:j];

for(UIView *view in self.view.subviews)
{
    if([view isKindOfClass:[UIButton class]])
    {
        UIButton *button = (UIButton *)view;
        if(button.tag == 1||button.tag == 2||button.tag == 3||button.tag == 4)
        {
            int value = rand() % ([artext count] -1) ;
            NSMutableDictionary *dictionary = [[NSMutableDictionary alloc]init];
            [dictionary setValue:animage.image forKey:@"button"];
            [button setTitle:[artext objectAtIndex:value] forState:UIControlStateNormal];

        }
    }
}

}

I connect this method with 4 buttons,i want to change all button title whenever i click any of the buttons,please help to code

share|improve this question
you need to save all these uibuttons in array then u can change the title of all these at click event. – Bob Apple Oct 24 '12 at 10:01
@SHAZAD can yu explain via code? – Fazil Oct 24 '12 at 10:02

1 Answer

up vote 2 down vote accepted

Because sender holds only that UIButton on which you have clicked.
For changing all UIButton's title you need a loop.
Set tag to all 4 buttons.

Then do this -

-(IBAction)setting:(id)sender
{
     int value = rand() % ([arraytext count] -1) ;
     for(UIView *view in self.view.subviews)
     {
        if([view isKindOfClass:[UIButton class]])
        {
            UIButton *button = (UIButton *)view;
            if(button.tag == 1||button.tag == 2||button.tag == 3||button.tag == 4)
            {
                [button setTitle:[arraytext objectAtIndex:value] forState:UIControlStateNormal];
            }
        }
     }  
}
share|improve this answer
if am having another image array how can i show the image names as title in uibuttons – Fazil Oct 24 '12 at 12:19
Make image names array then you can get them from array. – The Tiger Oct 24 '12 at 12:20
My doubt is how to compare if am selecting a button which contains the same image in uiimage view? – Fazil Oct 24 '12 at 12:24
I'm not getting you correctly.You have one method of all buttons click ... then how're you doing with your imageView ? – The Tiger Oct 24 '12 at 12:26
am asking if im putting an image contained array and if showing the titles of button as image name...How could i proceed for tat? – Fazil Oct 24 '12 at 12:28
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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