After Xcode 8 released, Objective-C has supported class property
, but I am not familiar with this feature.
When are class properties initialized ?
Are they stored on Stack
, Heap
or Static Area
?
What is the difference between class property and instance property?
When should we use them? Could you provide a scenario?