In Objective-C Does it ever make sense to specify a property for a primitive type as nonatomic?
nonatomic
I\'m wondering about the difference between these two pr
Yes. nonatomic is not a memory-management keyword, it has to do with thread safety. Also, properties are atomic by default (without explicitly declaring them as nonatomic), so there is a difference between the two declarations you listed.