Skip to content

Commit

Permalink
Merge pull request #120 from dmiluski/feature/makeCellsOpen
Browse files Browse the repository at this point in the history
Make Static Cells Open
  • Loading branch information
dmiluski authored Mar 16, 2018
2 parents 4d7bf32 + 1a4ee30 commit 59adc3b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Static/ButtonCell.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import UIKit

public class ButtonCell: UITableViewCell, Cell {
open class ButtonCell: UITableViewCell, Cell {

// MARK: - Initializers

Expand All @@ -17,7 +17,7 @@ public class ButtonCell: UITableViewCell, Cell {

// MARK: - UIView

public override func tintColorDidChange() {
open override func tintColorDidChange() {
super.tintColorDidChange()
textLabel?.textColor = tintColor
}
Expand Down
2 changes: 1 addition & 1 deletion Static/SubtitleCell.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import UIKit

public class SubtitleCell: UITableViewCell, Cell {
open class SubtitleCell: UITableViewCell, Cell {
public override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: .subtitle, reuseIdentifier: reuseIdentifier)
}
Expand Down
2 changes: 1 addition & 1 deletion Static/Value1Cell.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import UIKit

public class Value1Cell: UITableViewCell, Cell {
open class Value1Cell: UITableViewCell, Cell {
public override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: .value1, reuseIdentifier: reuseIdentifier)
}
Expand Down
2 changes: 1 addition & 1 deletion Static/Value2Cell.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import UIKit

public class Value2Cell: UITableViewCell, Cell {
open class Value2Cell: UITableViewCell, Cell {
public override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: .value2, reuseIdentifier: reuseIdentifier)
}
Expand Down

0 comments on commit 59adc3b

Please sign in to comment.