I have the equivalent of 3 cascading data sources or drop down lists. Since all data has to be created up front will this be a good candidate for MonoTouch.Dialog as one item's data depends on the preceding value?
Example of what I'm trying to do: I have a list of client names and each client can have a list of projects and each project can have a list of tasks.
I like the UI of tables that MT.D creates. If MT.D is not suitable for this, what would be a good approach for getting a similar UI? Would I have to create a separate UITableView and data source for each item (Client, Project, and Plan) with only one row in it?
The UI that I'm trying to replicate is having a single rounded table cell with the type on the left (e.g. Client), an accessory indicator on the right, and once a value is selected have the value on the right.