Skip to content

Instantly share code, notes, and snippets.

@mysteriouspants
Created September 28, 2012 21:18
Show Gist options
  • Save mysteriouspants/3802133 to your computer and use it in GitHub Desktop.
Save mysteriouspants/3802133 to your computer and use it in GitHub Desktop.
NSContainers+PrettyPrint Sample Output
Before swizzling:
<ExObj:0x7fc098415140
_ivar0 = Foo
_ivar1 = 42
_ivar2 = {
anotherObject = "<ExObj:0x7fc098414d80\n _ivar0 = Bar\n _ivar1 = 1\n _ivar2 = {\n }>";
}>
After swizzling:
<ExObj:0x7fc098415140
_ivar0 = Foo
_ivar1 = 42
_ivar2 = {
anotherObject = <ExObj:0x7fc098414d80
_ivar0 = Bar
_ivar1 = 1
_ivar2 = {
}>;
}>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment