user393273
user393273

Reputation: 1438

Call an IBAction

Can i call a IBaction from this

- (void)runScheduledTask {

}

i wish to call this IBAction:

}

Upvotes: 0

Views: 2818

Answers (1)

Eric
Eric

Reputation: 3895

Yes.

- (void) runScheduledTask {
   [self GetSms];
}

IBAction is the equivalent of void and is only used as an identifier by Interface Builder.

Upvotes: 7

Related Questions