What is the difference between atomic and nonatomic synthesized properties?
Answer / Rajneesh Kumar Gautam
Atomic properties are thread-safe, meaning that changes to their value are guaranteed to be atomic (indivisible). Nonatomic properties can be changed concurrently by multiple threads. The default property attribute in ARC is nonatomic.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is struct in objective c?
What are the differences between copy and retain?
Does objective c have function overloading?
What is difference between null and nil?
What is atomic property?
How to create thread in objective c?
What do you mean by dot notation?
How messaging works in objective-c?
What does the gc () method?
What is differences between nsnull and nil in objective c?
What are the advantages of using objective-c?
What is the difference between category and extension in objective c?