iphone - Effects of turning off ARC in iOS app -
i trying use framework not use arc , seems have turn feature off before can use it. question is, potential ramifications of doing so? if turn off, have current code make sure don't have memory leak or other issues in general?
arc works fine static libraries use manual reference counting. if you're copying bunch of .m files project, though, that's different story. fortunately, it's pretty easy turn off arc specific files; should files in framework , leave own files using arc.
Comments
Post a Comment