I get crashed if I use this code: (trying to create an outlet for a button with a selector to a method that invalidates the Time).
thanks
Code:
- (IBAction) cancelTime: (id) sender
{
[self performSelector:@selector(cancelIt:) withObject:nil];
}
- (void) cancelIt:(NSTimer*)timer
{
[timer invalidate];
timer = nil;
}
thanks