You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
261 B
6 lines
261 B
5 years ago
|
This check warns you when you are accessing an atomic property directly with an
|
||
|
ivar. This makes the atomic property not atomic anymore. So potentially you may
|
||
|
get a race condition.
|
||
|
|
||
|
To fix the problem you need to access properties with their getter or setter.
|