MultipleChoiceSurveyResponderController

open class MultipleChoiceSurveyResponderController: SurveyResponderController,
    SelectionButtonDelegate,
UITextFieldDelegate

Undocumented

  • Array of selected options selected by user.

    Declaration

    Swift

    open var selectedOptions: [Int]
  • Property use for other answer.

    Declaration

    Swift

    open var otherAnswer: String
  • Undocumented

    Declaration

    Swift

    override open func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int
  • Declaration

    Swift

    override open func registerComponents()
  • Declaration

    Swift

    override open func responderCell(for collectionView: UICollectionView, at indexPath: IndexPath) -> UICollectionViewCell

CheckBoxDelegate

  • Undocumented

    Declaration

    Swift

    open func willChange(_ selectionButton: SelectionButton, isSelected: Bool) -> Bool
  • Undocumented

    Declaration

    Swift

    open func didTap(_ selectionButton: SelectionButton)

UITextFieldDelegate

Open Methods

  • Modifies the value of the answer parameter.

    Declaration

    Swift

    open func buildAnswer()
  • Returns the chosen cell.

    Declaration

    Swift

    open func choiceCell(for collectionView: UICollectionView, at indexPath: IndexPath, item: Any) -> SurveyChoiceCell?