Created
December 20, 2018 07:56
-
-
Save gwennguihal/cd34fa8909856385c6dccfc11dfc0413 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| import Collor | |
| open class CollectionData: Collor.CollectionData { | |
| open override func reloadData() { | |
| super.reloadData() | |
| } | |
| public func addSection() -> SectionDescriptor { | |
| let sectionDescriptor = SectionDescriptor() | |
| sections.append(sectionDescriptor) | |
| return sectionDescriptor | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment