I was wondering if you can enable ARC in a Box2d project without any issues, or if it is simpler and easier to not use ARC with Box2d projects?
ARC enabled in Cocos2d Box2d project?
172 Views Asked by Chris Brasino At
1
There are 1 best solutions below
Related Questions in COCOS2D-IPHONE
- Loop an animation programatically in Cocos2d, like chaining the animation to itself in Spritebuilder
- timing issues while creating replay of game (ghost for racing)
- Cocos2D 2.x: Running CCWave action makes sprite disappear
- Cocos2d : Shooting a ball in the direction of the mouse click/Touch
- I want to use cocos2d-iphone 2.0 to draw a line
- Cocos2d Node not accepting Touches
- UIView cocos2d Support
- trouble getting collision point
- How do we enumerate and modify positions array of CCsprite inside Update method?
- CCActionDelay not working as expected
- How to perform action on "Touch inside" on button in Cocos2d
- CCLabelTTF universal device issue
- Sharing Property information between classes in Obj C
- Coco2d 2.1 and Xcode 7 iOS 9 crash ccShader
- How can I create a pop-up window using Cocos2d, SpriteBuilder and Objective-c?
Related Questions in AUTOMATIC-REF-COUNTING
- Any ideas why one object is not deallocated in objective-c ARC
- How to watch memory allocation/deallocation while program written in objective-c is working on OS X?
- Is it safe to assume static variables never get cleared?
- I have 2 issues preventing the conversion to ARC tool from running on xCode 6.3.1
- After converting to ARC I am getting "message sent to deallocated instance"
- Do I need to create a weak reference of self, if I am dispatching something in main thread?
- Webview - memory allocation increasing with each article load
- ARC won't load on Firefox 38.0.5
- Is this delegate property strongly referenced or not?
- Weak method argument semantics
- NS_ENUM as property in protocol
- How to debug memory leaks when Leaks instrument does not show them?
- Xcode is showing a warning about unsafe_unretained and not sure on how to fix this
- Do STL containers support ARC when storing Obj-C objects in Objective-C++?
- Why does the position of @autoreleasepool matter?
Related Questions in BOX2D
- timing issues while creating replay of game (ghost for racing)
- Cocos2d : Shooting a ball in the direction of the mouse click/Touch
- adobe pro cc (AS3) not recognizing box2d classpath
- I have an Array of 2 objects, when I use a for loop, both of the object gets the change that only one of them should have
- Libgdx Android game Crash after short time
- Set up wraparound effect in libGDX with Box2D
- Java/Android - libGDX/box2d - body has low velocity
- AndEngine remove physics body from screen
- libGDX Stage input handling
- Andengine Collision Not detected
- Android libgdx scene2d - button disappears
- SKEffectNode shader bug
- Ambiguous reference to b2FilterData
- Delete all box 2D bodies from world in libGDX
- Which Box2D-like physics engine parameters need pixel conversion?
Related Questions in BOX2D-IPHONE
- Mirroring Box2D shape
- SpriteKit, resolve collisions smoothly like in Cocos2d
- adding b2world to a CCLayer
- Setting a group of bodies to attract/reject each other
- How to use Box2D allocator?
- A breakable wall in box2d
- Removing a body with box2D
- Cocos2D camera movement?
- Most Efficient way to deal with multiple CCSprites?
- How to add a CCSprite (texture) to a polygon?
- Box2d SetLinearVelocity not working with gravity
- Force a box2d scene to Landscape orientation using XCode
- destroy box2d body in cocos2d
- Adding a sprite to fixture in box2d
- Remove b2body from cocos2d sprite
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Enable ARC, Box2D is not affected by ARC and it's not wise to start any new project without ARC.
The only thing you need to consider is to
__bridgecast from and to from Box2D's void* userData properties. Plenty of examples abound, and really simple.