Note the following when using Node userObject instance variables in Cocos2D:

Source: Internet
Author: User

Note the following when using Node userObject instance variables in Cocos2D:

 

We know that in Cocos2D, The CCNode object has an ivar as userObject, which can be used to conveniently store data related to this object, in this way, you do not have to bother writing subclass inheritance.

However, if your node is added to a node as a subclass, for example:

[SomeBaba addChild: myNode];

When the following statement is called to delete myNode from the parent node, the userObject will also be cleared:

[MyNode removeFromParent]; // some code use myNode. userObject, ERROR !!! // MyNode. userObject now is nil !!!

As shown above, after deleting itself from the parent node, although myNode itself has not been deleted (because it is still referenced elsewhere), its userObject content is already nil.
Therefore, you may want to delete the parent node before using it. In this case, you can:

Id tmpObj = myNode. userObject; [myNode removeFromParent]; // that's OK to use tmpObj now :)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.