xmartlabs / XLForm

XLForm is the most flexible and powerful iOS library to create dynamic table-view forms. Fully compatible with Swift & Obj-C.
MIT License
5.77k stars 953 forks source link

Possibility of using as a TableView instead of TableViewController? #965

Closed AdventuresOfMar closed 7 years ago

AdventuresOfMar commented 7 years ago

Hello!:) Is it possibility to use this cocoapod as a tableview instead of having it as the table view controller. Essentially I need a fixed header and fixed footer that don't scroll with the table view

mats-claassen commented 7 years ago

You must conform to XLFormViewController which is an UIViewController, not an UITableViewController. That XLFormViewController has a tableView and you can set its headers and footers as you want.

AdventuresOfMar commented 7 years ago

Thanks so much! That gives me an idea on where to start my changes