From e98a0ce76bde5d00cd6a1c1d00da1dac0d2b15b8 Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Tue, 29 Oct 2019 15:23:44 -0400 Subject: [PATCH] update pr comments --- MVMCoreUI/BaseClasses/View.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MVMCoreUI/BaseClasses/View.swift b/MVMCoreUI/BaseClasses/View.swift index d470c539..bc6e7634 100644 --- a/MVMCoreUI/BaseClasses/View.swift +++ b/MVMCoreUI/BaseClasses/View.swift @@ -8,7 +8,7 @@ import UIKit -open class View: UIView { +@objcMembers open class View: UIView { open var json: [AnyHashable: Any]? private var initialSetupPerformed = false @@ -18,7 +18,7 @@ open class View: UIView { initialSetup() } - init() { + public init() { super.init(frame: .zero) initialSetup() }