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.
Asked
Active
Viewed 264 times
2
-
Non-ARC projects also will work in the IOS 6 – Codesen Nov 30 '12 at 07:22
-
If you ARC-convert your project with the tools in xcode, it should still work in iOS 4. – emrys57 Nov 30 '12 at 07:24
-
See this link it will guide you. http://stackoverflow.com/questions/7476692/how-do-you-enable-arc-project-wide-in-xcode-4-2 – HDdeveloper Nov 30 '12 at 07:27
2 Answers
2
Convert your project to ARC using convert to arc tool of Xcode. Check below screen shot.

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