Hi, I am doing my first steps in coding an app and wondering what's an efficient way to transfer data from the delegates to the view. I have done it currently via some global variables. Nevertheless, I have studied some apps in github and realized that some define even a global class which is used to store data. But maybe it is even more efficient to have a direct pointer to the view? That said it is also a question of maintainability.
How are you doing data transfer between those classes?