I\'d like to do an action if someone touches a predeclared UILabel, something like:
UILabel
if (label is touched) { my actions; }
You can subclass it and override the touch methods. You probably want to override touchesEnded:withEvent:.
touchesEnded:withEvent:
Or just use a UIButton.