MCNavBarCustomView.swift 584 B

123456789101112131415161718192021222324252627
  1. //
  2. // MCNavBarCustomView.swift
  3. // HCQuanfangtong
  4. //
  5. // Created by Apple on 2022/8/2.
  6. // Copyright © 2022 Jyp. All rights reserved.
  7. //
  8. import UIKit
  9. class MCNavBarCustomView: MCNavBarView {
  10. init(customView: UIView, style: MCNavBarStyle? = nil) {
  11. super.init(title: nil, subTitle: nil, style: style)
  12. self.contentView.addArrangedSubview(customView)
  13. self.resetConstraint()
  14. }
  15. override var type: MCNavBarType{
  16. .custom
  17. }
  18. required init?(coder: NSCoder) {
  19. fatalError("init(coder:) has not been implemented")
  20. }
  21. }