Skip to content

Instantly share code, notes, and snippets.

@iranjith4
Created November 23, 2018 09:17
Show Gist options
  • Save iranjith4/66595872a8b1b4cf2675c49f68e5a0aa to your computer and use it in GitHub Desktop.
Save iranjith4/66595872a8b1b4cf2675c49f68e5a0aa to your computer and use it in GitHub Desktop.
/// UITableViewCell
class MyCustomTableViewCell: UITableViewCell, ReusableView, NibLoadableView {
}
// Or More suggested way
extension MyCustomTableViewCell: ReusableView, NibLoadableView { }
/// UITableViewHeaderFooterView
class MyCustomHeaderFooterView: UITableViewHeaderFooterView, ReusableView, NibLoadableView {
}
//Or
extension MyCustomHeaderFooterView: ReusableView, NibLoadableView { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment