This is the code:
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { let selectedItem = items.objectAtIndex(indexPath.row) as String let itemId = selectedItem.componentsSeparatedByString("$%^") //itemId[1] - Item Id } func tableView(tableView: UITableView, didDeselectRowAtIndexPath indexPath: NSIndexPath) { let selectedItem = items.objectAtIndex(indexPath.row) as String let itemId = selectedItem.componentsSeparatedByString("$%^") //itemId[1] - Item Id }
How to add Item Id "to Array or String or something else ..."? When you select strings 0,1,4,5, for example, you have different element identifiers added βin an array or in Stringβ, and then when I want to cancel them, how to cancel the desired element identifier from indexPath.row, which not selected and it finds "in an array or in String or something else ..." and deleted it? Sorry for my broken English if you have any questions asked in the comments and I will explain if I can
source share