Can someone help me out??
Okay.....my project is going well. Got a small issue of screen/data updating.
I have the standard 5 tab TabBarController working fine. One of my tabs enters data from a text field into an Entity Attribute in Core Data. All is fine so far.
When I switch to another tab, I have the Attribute being read from the database and entered into a picker.
The code works fine but it's when then reading takes place which is the problem.
After entering the data on tab 3 and it being written, I then switch to tab 1 and the picker hasn't updated. It's not until I stop the simulator and run again when the data shows up in picker on tab 1.
At the moment, I have the code for reading the attribute in the database and updating the picker array in the viewDidLoad method.
Is there another method that fires before this so my saved data can be read just before the tab switch and the picker displays?
I've also tried putting the database retrieval code in viewWillAppear method thinking it will fire before the view appears, read my data, update the picker array and then display but no!!!
As I said, the data is being written and retrieved fine....it's just that I have to stop the simulator and start it to fill the picker.
Any thoughts?
Cheers,
Gaz.
Bristol England.
viewWillAppear:
(orviewDidAppear:
) is probably the correct place for this sort of behavior, please investigate and explain why you do not see the behavior you expected in that case.viewDidLoad
is called when a view controller's view is constructed (either built inloadView
or "loaded" from a nib file). Since the view must be loaded before it can be displayed you can count onviewDidLoad
being called before a view first appears but not before every time it appears. If the view is already loaded it will not need to be loaded again. If however the application receives a memory warning while a view is not visible it will be unloaded and then loaded again if it needs to be re-displayed. ThusviewDidLoad
may be called many times during a controller's life but you cannot rely on it being called very time the view will appear, that's whatviewWillAppear
/viewDidAppear
are for.