diff --git a/MVMCoreUI/BaseControllers/ContainerCollectionReusableView.swift b/MVMCoreUI/BaseControllers/ContainerCollectionReusableView.swift index a0e80f21..d7fb0ed4 100644 --- a/MVMCoreUI/BaseControllers/ContainerCollectionReusableView.swift +++ b/MVMCoreUI/BaseControllers/ContainerCollectionReusableView.swift @@ -8,10 +8,11 @@ import Foundation +/// CollectionReusableView that can contains any other view. public class ContainerCollectionReusableView: UICollectionReusableView { - var view: UIView? - var topConstraint: NSLayoutConstraint? - var bottomConstraint: NSLayoutConstraint? + public var view: UIView? + public var topConstraint: NSLayoutConstraint? + public var bottomConstraint: NSLayoutConstraint? public func addAndContain(view: UIView) { guard self.view != view else { return }