Is it possible to create dynamically instances of a class giving them specific names (e.g. Friend1, Friend2, etc)?
I have a "Friends" class with some instance variables (e.g. Name and Surname). In my app user selects from a list the number of "Friends" he wants to add. So in case he selects 5 the UITableView will be populated with 10 empty fields (Name and Surname).
Do you know any way to create these objects "on the fly"?