pavankataria / SwiftDataTables

A Swift Data Table package, display grid-like data sets in a nicely formatted table for iOS. Subclassing UICollectionView that allows ordering, and searching with extensible options.
MIT License
448 stars 69 forks source link

Is it possible to freeze last row of table? #37

Closed anismansuri63 closed 5 years ago

anismansuri63 commented 5 years ago

I've some requirement in which I need to freeze last row of table. It is possible?

pavankataria commented 5 years ago

You're in luck, the freezing columns feature was recently built. This feature is available from version 0.8.0 so update your pods to the latest version 🎉 🎉

You can check out the release notes and tutorial here: https://github.com/pavankataria/SwiftDataTables/releases/tag/0.8.0

Does this help?

anismansuri63 commented 5 years ago

Thank for the help, but it will freeze the column. I wanted to freeze the last row I made changes in SwiftDataTable, DataStructureModel init method. Footer values passed along side header values. Enabled shouldShowFooter in DataTableConfiguration. Thanks again.