PQBFConfig.swift 424 B

12345678910111213141516171819202122232425
  1. //
  2. // PQBFConfig.swift
  3. // BFFramework
  4. //
  5. // Created by SanW on 2021/6/4.
  6. //
  7. import UIKit
  8. public class PQBFConfig: NSObject {
  9. public static let shared = PQBFConfig()
  10. public var styleColor: styleColor = .green
  11. override private init() {
  12. super.init()
  13. }
  14. override public func copy() -> Any {
  15. return self
  16. }
  17. override public func mutableCopy() -> Any {
  18. return self
  19. }
  20. }