SelectionTableViewCell

public class SelectionTableViewCell: UITableViewCell, SelectionCell

Simple implementation of SelectionCell with two labels and checkmark selection state.

  • The label to show the option title.

    Declaration

    Swift

    @IBOutlet public var titleLabel: UILabel?
  • The label to show the option detail.

    Declaration

    Swift

    @IBOutlet public var detailLabel: UILabel?
  • Sets this cell’s accessoryType to be .Checkmark if selected, .None otherwise.

    Declaration

    Swift

    override public func setSelected(selected: Bool, animated: Bool)