Created
March 12, 2022 03:33
-
-
Save aaronlab/e940a39ae7ceaeac9547cc078924121d to your computer and use it in GitHub Desktop.
BaseTableViewCell.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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