Skip to content

Instantly share code, notes, and snippets.

@wjlafrance
Created May 2, 2013 01:01
Show Gist options
  • Save wjlafrance/5499508 to your computer and use it in GitHub Desktop.
Save wjlafrance/5499508 to your computer and use it in GitHub Desktop.
find the bottom turtle
int i = 0;
id turtle = sender;
do {
turtle = [turtle superview];
NSLog(@"turtle %d: %@", i++, turtle);
} while (turtle != nil);
NSLog(@"reached the bottom turtle");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment