Ok, so I have a UILabel created in interface builder that displays some some default text of \"tap to begin\".
UILabel
When the user taps the UILabel>
UILabel>
Check it out:
UILabel *label = ... label.userInteractionEnabled = YES; UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(labelTap)]; [label addGestureRecognizer:tapGesture];
The trick is to enable user interaction.