When I analyse my code with Xcode,I have this error:

Thx for help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Is it being confused by a method name
initDATAS– it’s a static analyzer so has to trust that you’ve named your methods following the standard pattern. In this case, methods beginning withinitare reserved for initializing an object.Try changing it to
configDATASinstead and see what happens?Other than that, you’re doing everything correctly!
PS Are you testing on the simulator or on a real device – the simulator will return false positives sometimes so you should always check on an iPhone 🙂