Skip to content

Commit

Permalink
Merge branch 'master' into UpdatePodSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperspacemark authored Oct 13, 2020
2 parents 2cf9ff5 + 61dc228 commit d21d106
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions Static/ButtonCell.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import UIKit

@objc(STCButtonCell)
open class ButtonCell: UITableViewCell, Cell {

// MARK: - Initializers
Expand Down
1 change: 1 addition & 0 deletions Static/DataSource.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import UIKit
/// Table view data source.
///
/// You should always access this object from the main thread since it talks to UIKit.
@objc(STCDataSource)
public class DataSource: NSObject {

// MARK: - Properties
Expand Down
1 change: 1 addition & 0 deletions Static/SegmentedControlAccessory.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import UIKit

@objc(STCSegmentedControlAccessory)
open class SegmentedControlAccessory: UISegmentedControl {
public typealias ValueChange = (Int, Any?) -> ()
var valueChange: ValueChange? = nil
Expand Down
1 change: 1 addition & 0 deletions Static/SubtitleCell.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import UIKit

@objc(STCSubtitleCell)
open class SubtitleCell: UITableViewCell, Cell {
public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: .subtitle, reuseIdentifier: reuseIdentifier)
Expand Down
1 change: 1 addition & 0 deletions Static/SwitchAccessory.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import UIKit

@objc(STCSwitchAccessory)
class SwitchAccessory : UISwitch {
typealias ValueChange = (Bool) -> ()

Expand Down
1 change: 1 addition & 0 deletions Static/TableViewController.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import UIKit

/// Table view controller with a `DataSource` setup to use its `tableView`.
@objc(STCTableViewController)
open class TableViewController: UIViewController {

// MARK: - Properties
Expand Down
1 change: 1 addition & 0 deletions Static/Value1Cell.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import UIKit

@objc(STCValue1Cell)
open class Value1Cell: UITableViewCell, Cell {
public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: .value1, reuseIdentifier: reuseIdentifier)
Expand Down
1 change: 1 addition & 0 deletions Static/Value2Cell.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import UIKit

@objc(STCValue2Cell)
open class Value2Cell: UITableViewCell, Cell {
public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: .value2, reuseIdentifier: reuseIdentifier)
Expand Down

0 comments on commit d21d106

Please sign in to comment.