error: writable atomic property cannot pair a synthesized setter/getter with a user defined setter/getter
I had the same problem and after doing a bit of research, here is my conclusion about this issue: The compiler warns you about a @property that you declared as atomic (i.e. by omitting the nonatomic keyword), yet you provide an incomplete implementation of how to synchronize access to that property. To make that warning … Read more