I know that swift array structs are copied by value and not reference. Is there a simple way that I can cast or otherwise pass the array by reference in my prepare(for segue:... method so that I may pass a reference to the array from viewController A to viewController B?
I have seen some answers that refer to passing an array to a function but I simply want to pass it to other viewControllers