OJSStaticCell.swift 922 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // OJSStaticCell.swift
  3. // OJASwiftKitDemo
  4. //
  5. // Created by luxiaoming on 2017/3/8.
  6. // Copyright © 2017年 luxiaoming. All rights reserved.
  7. //
  8. import UIKit
  9. class OJSStaticCell: UITableViewCell {
  10. override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
  11. super.init(style: style, reuseIdentifier: reuseIdentifier)
  12. setupUI()
  13. }
  14. required init?(coder aDecoder: NSCoder) {
  15. fatalError("init(coder:) has not been implemented")
  16. }
  17. override func awakeFromNib() {
  18. super.awakeFromNib()
  19. // Initialization code
  20. }
  21. override func setSelected(_ selected: Bool, animated: Bool) {
  22. super.setSelected(selected, animated: animated)
  23. // Configure the view for the selected state
  24. }
  25. }
  26. // MARK: - PrivateMethod
  27. private extension OJSStaticCell {
  28. func setupUI() {
  29. }
  30. }