From b6a759be70faceeb81171bb8c010297ff11482fe Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 30 Aug 2023 14:18:23 -0500 Subject: [PATCH] refactored naming Signed-off-by: Matt Bruce --- VDSSample/Protocols/PickerBase.swift | 2 +- VDSSample/ViewControllers/LabelViewController.swift | 12 ++++++------ .../ViewControllers/TitleLockupViewController.swift | 12 ++++++------ .../TrailingTooltipLabelViewController.swift | 12 ++++++------ 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/VDSSample/Protocols/PickerBase.swift b/VDSSample/Protocols/PickerBase.swift index 00bbac1..030ce1b 100644 --- a/VDSSample/Protocols/PickerBase.swift +++ b/VDSSample/Protocols/PickerBase.swift @@ -150,7 +150,7 @@ public class SurfacePickerSelectorView: PickerSelectorView{ } } -public class TextPositionPickerSelectorView: PickerSelectorView{ +public class TextPositionPickerSelectorView: PickerSelectorView{ init(picker: UIPickerView? = nil){ super.init(title: "left", picker: picker, items: [.left, .right]) } diff --git a/VDSSample/ViewControllers/LabelViewController.swift b/VDSSample/ViewControllers/LabelViewController.swift index 5f4996e..b4ca6b3 100644 --- a/VDSSample/ViewControllers/LabelViewController.swift +++ b/VDSSample/ViewControllers/LabelViewController.swift @@ -17,10 +17,10 @@ class LabelViewController: BaseViewController