Last active
December 10, 2018 17:39
-
-
Save dmaclach/8f0e1d6a57f73ad63d047f3a39c5d02a to your computer and use it in GitHub Desktop.
Objective C property encodings
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
code | meaning | |
---|---|---|
R | read-only | |
C | by-copy | |
& | by-reference | |
D | dynamic | |
G | getter (followed by selector name) | |
S | setter (followed by selector name) | |
V | instance variable (followed by variable name) | |
T | type encoding (followed by old-style type encoding) | |
W | weak | |
P | strong | |
N | non-atomic |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment