TibalSep 21
Shouldn’t your button example be something like
Manuel Meyer
12
His example should have been
-(IBAction)onTouchUpInsideLabel:(UILabel *)sender
{
static BOOL sayHello = NO;
sender.text = sayHello ? @”Hello world” : @”Good bye”;
sayHello =Â !sayHello;
}