I am new in iOS and I have tab bar. I have 4 tabs like Facebook.
In my case all data should be updated from server anytime when user goes one of that screen.
One guy said calling viewDidLoad
frequently can make memory leaks. Is that true?
So what's the best play here? Every time call viewDidLoad()
and load data from server or there is another way to handle this not calling viewDidLoad()
every time.
There is no pull to refresh in that screens