bhlvoong / LBTATools

Set of tools to drastically improve development speed of UI in iOS applications
MIT License
727 stars 94 forks source link

What about ListViewController with multiple sections? #22

Closed atong007 closed 4 years ago

atong007 commented 4 years ago

It is there a way to use LBTAListController for multiple sections?Except customise the datasource.

bhlvoong commented 4 years ago

Nope, ListController only supports a single section. Supporting multiple sections with varying cell types requires a lot of custom code. Therefore I think writing your own UICollectionViewController subclass is better than using a library.

atong007 commented 4 years ago

Got it! Thanks.