Add multiple objects to the same index in NSMutable array?
Is it possible to add multiple Objects to the same index in NSMutable array? For example, I have an array that populates a UITableView. The array needs to contain both the title of the cell (I've made a custom cell that allows the user to title the cell to their liking) and a float value. Basically, the user clicks on the cell and is taken to another view where they can input that float value that needs to be stored in the array along with the name of the cell, so I can recall both of these easily if the user quits the app. Help would be appreciated. Thanks.
|