vds_ios/VDS/Protocols/ViewProtocol.swift
Matt Bruce 6b77c2829a first cut of Toggle
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-07-25 14:51:12 -05:00

20 lines
334 B
Swift

//
// ViewProtocol.swift
// VDS
//
// Created by Matt Bruce on 7/22/22.
//
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()
}