Skip to content

Instantly share code, notes, and snippets.

@bjhomer
Created May 8, 2011 03:17
Show Gist options
  • Save bjhomer/961065 to your computer and use it in GitHub Desktop.
Save bjhomer/961065 to your computer and use it in GitHub Desktop.
Infinite recursion via NSLog
NSMutableArray *a = [NSMutableArray array];
[a addObject:a];
NSLog(@"a: %@", a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment