OK, so here's my situation :
- I've got an
NSDictionary
, let's call it :myItem
. myItem.valueNames
contains the values that I want to show up in the popupmyItem.values
contains the values the popup must return (e.g. for valueName[0] -> value[0], and so on)myItem.value
contains the current value
How am I suppose to bind that? Even though I've studied the official reference, it still looks a bit obscure...
I'm currently binding :
myItem.valueNames
toContent
myItem.values
toContent Objects
myItem.value
toSelected Value
and... all I've managed is that it shows the valueNames
.
Any ideas?