Call an IBAction
Can i call a IBaction from this
- (void)runScheduledTask {
}
i wish to call this IBAction:
- (IBAction)GetSms 开发者_开发问答{
}
Yes.
- (void) runScheduledTask {
[self GetSms];
}
IBAction
is the equivalent of void
and is only used as an identifier by Interface Builder.
精彩评论