In Objective-C, what does "(UIButton *)sender" mean and why is it not "UIButton *sender"? Or some NSObject in place of UIButton. This is more a question about the precedence of the asterisk...
- (IBAction)digitPressed:(UIButton *)sender {
//...
}