2

i have already developed a project upto iOS 4 compatible. my question is now i want non-ARC to ARC enable project which should work on lates iOS 6 version.

korat prashant
  • 1,523
  • 10
  • 24

2 Answers2

2

Convert your project to ARC using convert to arc tool of Xcode. Check below screen shot.enter image description here

Susim Samanta
  • 1,605
  • 1
  • 14
  • 30
0

As I know, ARC is just a Xcode compiler feature, it automatically analysis your code and insert memory release statements. It's per file instead of per project. It could be turn on/off by giving certain compile parameter. So you don't have to convert your existing code to ARC, it doesn't matter for iOS 6.

TieDad
  • 9,143
  • 5
  • 32
  • 58