In an app that I am working for, I need array variable that can be used in all UIView
s. Currently when the array is changed in a view it is stored in the database, and when I need the updated version of the array in the previous view, I use the viewWillAppear
method and retrieve the updated array from the database. While going to another view by a segue, I use the passing data by prepareForSegue
, but if I use the back button, or just change the screens via tab bar, I use the viewWillAppear
and a query.
Is there any way that when the array is created in a view, the data in it will be accessible in all views?