Hi there,
For a program I am developing I have to create a grid of nodes. For instance a grid of 10x10 = 100 nodes. A node can contain several variables. I am having problems visualizing this in a Object Oriented way. My idea is that I let the program automatically create an object for every node, as I have made a class "Node". My question is: Is it possible to let Objective-C (2.0) create automatically a large number of objects (for instance node1 to node100)?
As I am quite new to programming I can imagine this being a wrong way to view this. If so, I would like advice on how to tackle this properly.
Thanks in advance.