Skip to content

Instantly share code, notes, and snippets.

@Quaggie
Created March 14, 2018 17:23
Show Gist options
  • Save Quaggie/be354217c2a17c9e13a8d72ff03b322d to your computer and use it in GitHub Desktop.
Save Quaggie/be354217c2a17c9e13a8d72ff03b322d to your computer and use it in GitHub Desktop.
class MotorcycleTableViewCell: UITableViewCell {
var motorcycle: Motorcycle?
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
setupViews()
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
private func setupViews() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment