QuickTableViewController

open class QuickTableViewController : UIViewController, UITableViewDataSource, UITableViewDelegate
extension QuickTableViewController: SwitchCellDelegate

A table view controller that shows tableContents as formatted sections and rows.

Initialization

  • Initializes a table view controller to manage a table view of a given style.

    Declaration

    Swift

    public init(style: UITableView.Style)

    Parameters

    style

    A constant that specifies the style of table view that the controller object is to manage.

  • Returns a newly initialized view controller with the nib file in the specified bundle.

    Declaration

    Swift

    public override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?)

    Parameters

    nibNameOrNil

    The name of the nib file to associate with the view controller.

    nibBundleOrNil

    The bundle in which to search for the nib file.

  • Returns an object initialized from data in a given unarchiver.

    Declaration

    Swift

    public required init?(coder: NSCoder)

    Parameters

    coder

    An unarchiver object.

SwitchCellDelegate