Skip to content

Commit

Permalink
making table cell really public
Browse files Browse the repository at this point in the history
  • Loading branch information
rafiki270 committed Jun 12, 2018
1 parent ff09ed0 commit 7a14c7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Classes/Views/GridTableViewCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@


/// Grid view enabled table view cell
class GridTableViewCell: UITableViewCell {
open class GridTableViewCell: UITableViewCell {

/// Grid view
public let gridView = GridView()

@available(*, unavailable, message: "This method is unavailable", renamed: "gridView")
override var contentView: UIView {
override open var contentView: UIView {
get { return super.contentView }
}

Expand All @@ -36,7 +36,7 @@ class GridTableViewCell: UITableViewCell {
}

@available(*, unavailable, message: "This method is unavailable")
required init?(coder aDecoder: NSCoder) {
required public init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

Expand Down

0 comments on commit 7a14c7e

Please sign in to comment.