I’d like to use a UITableViewController to display some static content. Is it possible to design the entire table, including content, within Interface Builder, or is it always necessary to implement a data source, taking care of dequeing cells, etc?
I know there’s Monotouch.Dialog, but for some things I would still prefer to use the IB.
Thanks,
Adrian
Implementing a data source will always be required.
The closest thing you can do to designing everything in IB, is to add and design your individual cells in the XIB (or in a separate XIB), adding the content you want, and use them in your data source through outlets.