ortuman / SwiftForms

A small and lightweight library written in Swift that allows you to easily create forms.
MIT License
1.33k stars 209 forks source link

Reload Form with new sections #150

Open jakubmajewski opened 7 years ago

jakubmajewski commented 7 years ago

Hi How to reload form with new sections and rows?

helllth commented 7 years ago

Since the FormViewControllerextends the UITableViewControlleryou just have to call

tableView.reloadData()

after you manipulated the row or section description.

helllth commented 7 years ago

With that you can easily do stuff like that:

belis-dynamic-sections