UITableView

Undocumented

  • Register given UITableViewCell in tableView. Cell will be registered with the name of it’s class as identifier.

    Declaration

    Swift

    public func register<T : UITableViewCell>(_: T.Type)
  • Register given UITableViewCell in tableView. Cell will be registered with the name of it’s class as identifier.

    Declaration

    Swift

    public func registerNib<T : UITableViewCell>(_: T.Type)
  • Dequeue cell of given class from tableView.

    Declaration

    Swift

    public func dequeue<T : UITableViewCell>(_: T.Type) -> T