I am developing a cocos2d game, I tried to converted the code to Objective c ARC, But it shows some issues in the cocos 2d library.

How can I convert a cocos2d application to Objective C ARc. Is there any new release of cocos2d which is ARC compatible,

Thanks in advance

link|improve this question

64% accept rate
It would be helpful to post the errors you are receiving. – Simon Lee Feb 1 at 11:50
feedback

2 Answers

up vote 1 down vote accepted

You can disable ARC on a file-by-file basis. For each element of the Cocos2D Library, apply the technique of How can I disable ARC for a single file in a project?

link|improve this answer
Err, for 50+ files this is painful. – LearnCocos2D Feb 1 at 21:21
feedback

Cocos2d-iphone v1.1 (beta) and 2.0 (beta) are compatible with ARC - but only if you build cocos2d-iphone into a static library. There's no official instructions or template project yet.

Tiny Tim Games has a tutorial on that, and Ray Wenderlich has an alternative solution.

And Kobold2D gives you ARC for cocos2d-iphone out of the box, plus all the nitty-gritty information about ARC that'll help you with the follow-up questions you'll have sooner than later.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.