// // OJSStaticCell.swift // OJASwiftKitDemo // // Created by luxiaoming on 2017/3/8. // Copyright © 2017年 luxiaoming. All rights reserved. // import UIKit class OJSStaticCell: UITableViewCell { override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { super.init(style: style, reuseIdentifier: reuseIdentifier) setupUI() } required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } override func awakeFromNib() { super.awakeFromNib() // Initialization code } override func setSelected(_ selected: Bool, animated: Bool) { super.setSelected(selected, animated: animated) // Configure the view for the selected state } } // MARK: - PrivateMethod private extension OJSStaticCell { func setupUI() { } }