I am making an iPhone app with different views, one of these being an UITableView, and i want to pass an ID string to another view, depending on the selected row.I have multiple row selection.I don’t want to pass the data of the cell, but an ID to associate with it.
F.E: Cell name: “United States”, to return a NSString: “09r454-0567-34”.I don’t have an idea of how to associate these strings to a cell.Thanks in advance.
I am making an iPhone app with different views, one of these being an
Share
Maybe you need to declare an array of dictionaries, then you catch didSelectRowAtIndexPath:, and retreive the information in that array
NSArray* myIDArray; //must be declared in .h
Hope this help…