diff --git a/VDS/Protocols/ViewProtocol.swift b/VDS/Protocols/ViewProtocol.swift index 02d1d31b..38ebcd96 100644 --- a/VDS/Protocols/ViewProtocol.swift +++ b/VDS/Protocols/ViewProtocol.swift @@ -9,11 +9,8 @@ import Foundation import UIKit public protocol ViewProtocol { - - // Updates the ui to fit the right size. - func updateView(_ size: CGFloat) - + // Can setup ui here. Should be called in the initialization functions. - func setupView() + func setup() }