Hi all,
I am building an iOS app that uses a SQLite DB. My thought process when building was to add the DB as a public shared property to the App section, and in the Opening event make the DB connection so that it can then be shared by all screens within the app.
The DB definitely connects during app opening, but when I go to use it in a screen later on it gives a NillObjectException. What (probably basic) step am I missing? Do I need to declare it in each screen, or reconnect each time?