Can i call a IBaction from this
- (void)runScheduledTask {
}
i wish to call this IBAction:
- (IBAction)GetSms {
}
Can i call a IBaction from this
- (void)runScheduledTask {
}
i wish to call this IBAction:
}
Yes.
- (void) runScheduledTask {
[self GetSms];
}
IBAction
is the equivalent of void
and is only used as an identifier by Interface Builder.