How can i obtain the text of a UIButton in my
-(IBAction)clicked:(id)sender
method?
Thanks
What about this:
- (IBAction)clicked:(id)sender {
  UIButton *button = (UIButton *)sender; 
  NSString *buttonTitle = button.currentTitle;
}
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With