His example should have been

-(IBAction)onTouchUpInsideLabel:(UILabel *)sender

{

static BOOL sayHello = NO;

sender.text = sayHello ? @”Hello world” : @”Good bye”;

sayHello = !sayHello;

}