/DynamicTableInStaticTable

Example of using UITableViewController with seemingly partially dynamic content.

Primary LanguageObjective-C

DynamicTableInStaticTable

An example of how UITableViewController can be used with static cells to keep simple references to static outlets even if some part of it must be changable dynamically. To make things evem more complicated dynamic cells can be not only added and deleted, but also rearranged with BVReorderTableView. And another bit of complication: we want to have some view at the bottom of the screen, which doesn't move as table scrolls, but can do something with table's content. Latter solved with help of YoCoh's answer

Conclusion: never ever add subviews to UITableViewController's view, and never use dynamic cells prototypes to present static content, there are other more reliable ways to achieve the same.