nicklockwood / FXForms

[DEPRECATED]
Other
2.93k stars 339 forks source link

How to refresh the display value? #404

Closed gzdgt closed 9 years ago

gzdgt commented 9 years ago

This is my code,(formViewController?.formController.form as! RegistrationForm).setValue(volume, forKey: "volume"),but no real time display. How do I refresh the display?

nicklockwood commented 9 years ago

Call tableView.reloadData()

gzdgt commented 9 years ago

Thank you.