Commmunication between classes....
Commmunication between classes....
- Subject: Commmunication between classes....
- From: Albert Atkinson <email@hidden>
- Date: Sun, 1 Sep 2002 11:10:08 -0500
Greetings!
I am having trouble calling an action from another class....here is my
action:
- (void)doAllBlinky
{
allBlinky = [[NSTimer scheduledTimerWithTimeInterval:1 target:self
selector:@selector(doAll:) userInfo:nil repeats:YES] retain];
}
This resides in a file called Blinky.m Here is a snippet that is
attempting to execute that action, this snippet resides in
Preferences.m:
#import "Blinky.h"
--SNIPPED--
- (IBAction)saveChanges:(id)sender
{
[self save];
[Blinky doAllBlinky];
}
I have a feeling I am doing this way wrong...can someone give me a
suggestion?
Thanks!
Albert
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.