I have an array of objects in a tableView. I want the user to be able to go to another page and select from a checklist of objects to filter the first array.
How should I handle the data from the checklist? I am currently handling it as an NSMutableArray of selected objects. But then how do I filter the first array with the contents of another array?
Should I handle each item as a NSString instead?
Thanks for the help!