I have to maintain some complex states of an object. Each state should be represented by a picker control.
An object has multiple states and the list of states is large and must be retrieved from a DB. Also some states share the same list.
Sharing the list isn't a problem.
But I want to show the current state, without loading the complete data list into the picker.
Is there any event that is called when the picker is opened?
My idea is to populate the picker with the current states selection. If the user taps on the picker, I will load the list of all available states...