NodeListViewController

open class NodeListViewController : UITableViewController

Controller for viewing node lists.

  • Gets the number of sections in the specified table view.

    Declaration

    Swift

    open override func numberOfSections(in tableView: UITableView) -> Int

    Parameters

    tableView

    The UITableView to check.

    Return Value

    The number of sections.

  • Gets the title of the specified section in the specified table view.

    Declaration

    Swift

    open override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?

    Parameters

    tableView

    The UITableView to check.

    section

    The index of the section whose title is checked.

    Return Value

    The title.

  • Gets the count of nodes in the specified table view.

    Declaration

    Swift

    open override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int

    Parameters

    tableView

    The UITableView to check.

    section

    The count of rows in the section.

    Return Value

    The count of items.

  • Gets the cell from the specified table view with the specified path.

    Declaration

    Swift

    open override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell

    Parameters

    tableView

    The UITableView to check.

    indexPath

    The NSIndexPath to the cell.

    Return Value

    The UITableViewCell.