Skip to content

Instantly share code, notes, and snippets.

@rockname
Created December 3, 2018 09:11
Show Gist options
  • Select an option

  • Save rockname/2077b07765718dcc4a5526c1e27377e5 to your computer and use it in GitHub Desktop.

Select an option

Save rockname/2077b07765718dcc4a5526c1e27377e5 to your computer and use it in GitHub Desktop.
struct TableCellSection {
var rows: [TableCellRow]
let headerTitle: String?
let footerTitle: String?
init(rows: [TableCellRow], headerTitle: String? = nil, footerTitle: String? = nil) {
self.rows = rows
self.headerTitle = headerTitle
self.footerTitle = footerTitle
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment