I think I may have asked the question wrong...or worded it wrong.
I have multiple IBActions, each can be called on its own, but after it is called it effects other IBActions. I want to have an IBAction call on another IBAction after it completes its execution.
Something like...
Code:
-(IBAction)run {
do stuff
reselect action
start (IBAction)doSomeThingElse
}