I have 5X5 button in a view. Based on some Condition, i want to interchange them. How can i know which of them is touched, if move is not possible then a message alert will be displayed.If the move is possible then current button should replace the Previous one.

Thanks in Advance...

link|improve this question

42% accept rate
Assign different tags to the buttons. In the action method, using the tag, you'll know which of them was clicked. – Shanti K Dec 6 '11 at 11:43
@ Ananth means that you have 25 buttons in a matrix and on touch each of them you want to retrieve the title of the buttons.Is it so? some code please for more info. – Anil Kothari Dec 6 '11 at 11:46
feedback

2 Answers

I suggest you review your question as it is difficult to understand what you really want. But to know which button was touched up inside you can assign unique tags to buttons and then check for the sender's tag. Or another way, declare 25 UIButton IBOutlets (instance variables) and connect them to the buttons in Interface Builder. And then you can check if the [sender isEqual:button1(button2 etc....)].

-(IBAction)buttonTouched:(UIButton*)sender{
   if (sender.tag=@"Button1")
      ..........
 }

or

IBOutlet UIButton button1;
..........
-(IBAction)buttonTouched:(UIButton*)sender{
  if ([sender isEqual:button1])
 .......
 }
link|improve this answer
feedback

After clicking the button if you can retreive the title of the button you can use the follwing code(if your button touch down event is connected to this function):-

-(void)btnClicked:(id)sender {       
    UIButton *rButton = (UIButton *)sender;
    NSLog(@" The button's title is %@." rButton.currentTitle);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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