Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8810563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T03:08:58+00:00 2026-06-14T03:08:58+00:00

As far as I understand the CCNode::getChildByTag method only searches among direct children. But

  • 0

As far as I understand the CCNode::getChildByTag method only searches among direct children.

But is there any way to recursively find a CCNode’s child by tag in all its descendant hierarchy ?

I’m loading a CCNode from a CocosBuilder ccb file and I’d like to retrieve subnodes knowing only their tags (not their position/level in the hierarchy)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T03:08:59+00:00Added an answer on June 14, 2026 at 3:08 am

    One way – to create your own method. Or create category for CCNode with this method. It will look like smth like this

    - (CCNode*) getChildByTagRecursive:(int) tag
    {
        CCNode* result = [self getChildByTag:tag];
    
        if( result == nil )
        {
            for(CCNode* child in [self children])
            {
                result = [child getChildByTagRecursive:tag];
                if( result != nil )
                {
                    break;
                }
            }
        }
    
        return result;
    }
    

    Add this method to the CCNode category. You can create category in any file you want but I recommend to create separate file with this category only. In this case any other object where this header will be imported, will be able to send this message to any CCNode subclass.

    Actually, any object will be able to send this message but it will cause warnings during compilation in case of not importing header.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As far as I understand this, it seems that there is not a direct
As far as I understand from the documentation the QUdpSocket are async but, still,
So far I can understand HTML.ActionLink and URL.RouteURL but still trying to absorb where
So far as I understand, SimpleIoc uses GetInstance method to retrieve an instance of
As far as I understand, this code grabs only the first shape in the
As far as I understand from app engine tutorial, entity groups exist only for
As far as i understand ViewModel communicates with View via databinding. But how can
As far as I understand it, any program gets compiled to a series of
As far as I understand Facebook allowes you (through the API) to post on
As far as I understand, https is http plus SSL/TLS. What do I need

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.