1) Cant we run ios project developed using MRC(Manual Reference Counting) which is for iOS6? Does not Xcode 5 allow to code using MRC as it supports ARC? Can we use only ARC in Xcode 5?
Asked
Active
Viewed 867 times
2 Answers
1
Yes you can.
Simply set build setting Objective-C Automatic Reference Counting to No
(Click Project->Build Settings)
EsbenB
- 3,346
- 21
- 42
-
-
I want detail answer..Will windows.xib work correctly in iOS7 without storyboard converting? – senthilM Feb 27 '14 at 12:11
1
Go to Targets --> BuildPhases-->Compile Source here you can see list of .m files double click on any .m file and write -fno-objc-arc . Now you can Use MRC in your code , make sure you write code for all .m (-fno-objc-arc)
Charan Giri
- 1,097
- 1
- 9
- 15