Hello,
I try to convert some code from Objective-C to C**.
There is this construction:
<pre>
NSDictionary* dict
NSArray* children = ;
</pre>
and C** alternative:
CCDictionary* dict
CCMutableArray* children = (CCMutableArray*) dict->objectForKey("children");
Here is part of xml file whitch was parsed into dict:
nodeGraph
children
children
...
children->count() is 0.
Is there other alternative, how to get array from CCMutableDictionary, or number of children?
Thanks for help.
MG