Created
September 28, 2012 21:18
-
-
Save mysteriouspants/3802133 to your computer and use it in GitHub Desktop.
NSContainers+PrettyPrint Sample Output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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