Basically I want the same functionality that you get by using the RadioSelection attribute except that it allows multiple selections to be made.
Something like this:
[CheckSelection]
private IList<int> currentSelections;
private IList<string> myList;
Looking at the documentation there doesn't seem to be a mention of anything like this. So my question is: Can a Checkbox Selection list be created with the present version of MonoTouch.Dialog? If so, then how? If not, is there a better way to handle this case?