I have a number of arrays (let's call them array A, B, C, and D).
I want to be able to toggle what's included in a master array with UISwitches for each array.
To avoid repeating all the arrays for all the combinations (A, AB, AC, AD, ABC, ABD, ACD, ABCD, B, BC, etc...), is there a way to programmatically do this?
To be clear, "A", "B", "C", and "D" are four different arrays, not contents in a single array.
Thank you - any help is much appreciated.