Just create new project and checked Automatic Reference Counting and downloaded another project.
when I import the downloaded classes to my project, it gives too much errors, after searching I found that because the downloaded project is non-Automatic Reference Counting .
so, what is the solution for this problem please ?
This occurs because calls like “release” cause errors in ARC projects so that you don’t use them because the compiler does this for you. To keep ARC enabled on your classes and disable it on the class you’ve imported go to your build phases and add the compiler flag “-fno-objc-arc” to the class that you want to use manual memory management.