Skip to content

Instantly share code, notes, and snippets.

@aaronlab
Created March 12, 2022 03:33
Show Gist options
  • Save aaronlab/e940a39ae7ceaeac9547cc078924121d to your computer and use it in GitHub Desktop.
Save aaronlab/e940a39ae7ceaeac9547cc078924121d to your computer and use it in GitHub Desktop.
BaseTableViewCell.swift
//
// BaseTableViewCell.swift
//
// Created by Aaron Lee on 2022/03/10.
//
import SnapKit
import Then
import UIKit
class BaseTableViewCell: UITableViewCell {
// MARK: - Public Properties
// MARK: - Init
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
configureView()
layoutView()
}
required init?(coder: NSCoder) {
super.init(coder: coder)
configureView()
layoutView()
}
func configureView() {}
func layoutView() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment