Code:
-(IBAction)methodA:(id)sender
{
if (something)
{
methodA code;
}
else
{
[COLOR="Purple"][B]goto and execute (IBAction)methodB[/B][/COLOR] [COLOR="SeaGreen"]//how do i write this?[/COLOR]
}
}
-(IBAction)methodB:(id)sender
{
metondB code;
}
how do i tell one method to direct itself to another method in the same class? also, is there a name for this type of thing, like a "redirect" or something like that?