I have 3 simple arrays:
var myContintents = [Europe,Africa]
var myCountries = [UK, France, Senegal]
var myCities = [London, Birmingham, Paris, Dakar]
Each array populates a listview, with a navigationlink to the next listview
Listview 1 = Contintents
Listview 2 = Countries
Listview 3 = Cities
However, I am having trouble with how to make this dependant
For example,
If 'Europe' is chosen on Listview1, then Listview2 should only contain UK and France (not Senegal, as Senegal is not in Europe)
If 'France' is chosen on Listview 2, then Listview 3 should only contain Paris
Any recommended suggestions on how to handle this would be most welcome
Thanks