Repetitive code in UITableView
I find myself writing a lot of repetitive code in UITableView, especially for config panels spending much more time on 开发者_JS百科it that it seems worth.
I was wondering if something like MonoTouch Dialog (http://tirania.org/blog/archive/2010/Feb-23.html) existed in Obj-C.
Thanks!
I've had good luck with Sensible TableView. The support is excellent, should you have any problems.
You could write code to create table views/hierarchies declaratively. Apple's Settings app, for example, has most of it's layout and presentation defined in plist files that are adapted to something UITableView
can consume by PSListController
.
精彩评论