12345678910111213141516171819202122232425 |
- //
- // BFRSComm.swift
- // BFRecordScreenKit
- //
- // Created by 胡志强 on 2021/11/23.
- //
- import Foundation
- import BFCommonKit
- // class BFUIConfig{}
- public func imageInRecordScreenKit(by name: String) -> UIImage? {
- return UIImage(named: name, in: currentBundle(), compatibleWith: nil)
- }
- func currentBundle() -> Bundle? {
- return Bundle.current(moduleName: "BFRecordScreenKit", isAssets: false)
- }
- // func ThemeStyleGreen() -> UIColor {
- // return UIColor.hexColor(hexadecimal: "#28BE67")
- // }
- public var ThemeStyleColor = UIColor.hexColor(hexadecimal: "#28BE67")
|