Hello, in an iPhone app, the User can create Items - each Item needs to have a CGPoint, NSString and a few integers with information about it. The User can keep adding these Items.
How can i store all these variables for each of the Items and programmatically keep adding them to a list or array or something? I tried using a struct array but it can't hold a NSString. I tried using a NSMutableAray of a custom class, but i can only add them if i make and name them by hand.
Any suggestions, ideas? Could i use a NSDictionary?
Thanks for this awesome site!