I like doing game development and I've been doing some with Sprite Kit, but I keep getting stuck while trying to make tree structures. Things for data and configurations.
In javascript I would just make objects of objects of objects and do whatever I wanted. So something like:
[{
location: {x: 2, y:12},
allowedNodes: [2,5],
someflag: true
}, ...
];
Or make objects and reference them everywhere. I know there is a NSMutableDictionary and structs do exist, but ARC won't let you put any references in them.
I also come from a C++ background and I feel I can do anything at all in C++, but I'm having a really tough time with Objective-C.