This commit is contained in:
Kevin G Christiano 2020-02-26 13:44:17 -05:00
parent 73bd5ebafc
commit 10e4711c90

View File

@ -9,15 +9,24 @@
import UIKit
open class Arrow: View {
//--------------------------------------------------
// MARK: - Properties
//--------------------------------------------------
//--------------------------------------------------
// MARK: - Lifecycle
//--------------------------------------------------
open override func setupView() {
super.setupView()
}
//MARK: - MVMCoreMoleculeViewProtocol
//--------------------------------------------------
// MARK: - MVMCoreMoleculeViewProtocol
//--------------------------------------------------
public override func setWithModel(_ model: MoleculeModelProtocol?, _ delegateObject: MVMCoreUIDelegateObject?, _ additionalData: [AnyHashable: Any]?) {
guard let progressBarModel = model as? ArrowModel else { return }
guard let model = model as? ArrowModel else { return }
}
}