BLURG!!!
how do i tell one method to goto another method in the same class? i know it's so simple it's dumb, but i can never get it right...
how do i tell one method to goto another method in the same class? i know it's so simple it's dumb, but i can never get it right...
Code:
- (IBAction)writeSomething:(id)sender
{
NSLog( @"Apples ");
[self secondPart:nil];
}
- (void)secondPart
{
NSLog (@"and ");
[self thirdPart:nil];
}
- (void)thirdPart
{
NSLog (@"Oranges");
}