I have an IBAction button that I would like to enable after a 30 second delay. the button would be in the view but disabled for 30 secs.
does anyone know how I would go about doing this?
here's what I have - a simple IBAction that plays some audio:
-(IBAction) playSound:(id)sender {
[theAudio play];
}
thanks for any help.