Made classes open instead of public, to access via SwiftUI

This commit is contained in:
Doron Katz
2020-01-28 10:21:17 -08:00
parent aca50feac8
commit 8e47206f83
9 changed files with 29 additions and 20 deletions
@@ -6,7 +6,7 @@
import UIKit
final class OpenSourceTableViewCell: UITableViewCell, Reusable {
open class OpenSourceTableViewCell: UITableViewCell, Reusable {
// MARK: - Lifecycle
@@ -15,7 +15,7 @@ final class OpenSourceTableViewCell: UITableViewCell, Reusable {
self.prepareCellComponent()
}
required init?(coder aDecoder: NSCoder) {
required public init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}