Skip to content

Instantly share code, notes, and snippets.

@susieyy
Created January 11, 2017 01:17
Show Gist options
  • Save susieyy/51196ac1b5bf42637414975a4565d65f to your computer and use it in GitHub Desktop.
Save susieyy/51196ac1b5bf42637414975a4565d65f to your computer and use it in GitHub Desktop.
final class OverridedCell: UITableViewCell {
static let identifier = "OverridedCell"
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
prepareView()
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
private func prepareView() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment