Last active
August 29, 2015 14:00
-
-
Save elizaaverywilson/8428b63bd9a5697f161b to your computer and use it in GitHub Desktop.
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
NSObject *object = [[NSObject alloc] init]; | |
NSObject *object2 = object | |
Does `object2` == `object`? | |
Does `object2` have the same memory address as `object`? | |
If I go like: | |
[object setValue:differentValue], does object2.value change? | |
What about the other way around? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment