Interface not receiving messages until action method completes
Interface not receiving messages until action method completes
- Subject: Interface not receiving messages until action method completes
- From: "F. C. Rock" <email@hidden>
- Date: Tue, 3 Jan 2006 22:11:14 -0500
Much appreciate help with this:
I click on a button on my interface. The button is connected to the
following action:
- (IBAction)play:(id)sender
{
[self cueMusic: nil];
[music play];
return;
}
cueMusic is an action connected to another button on the same
interface. It highlights the button.
The problem is that "cueMusic:" button doesn't get highlighted until
after the program returns from -play:.
I also have a clock displayed on this interface and the display
ceases to update until after the program returns from -play:.
Can anyone tell me what's happening here - and how to fix it?
Fred
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden