IGListBindingSectionControllerSelectionDelegate

@protocol IGListBindingSectionControllerSelectionDelegate <NSObject>

A protocol that handles cell selection events in an IGListBindingSectionController.

  • Tells the delegate that a cell at a given index was selected.

    Declaration

    Objective-C

    - (void)sectionController:
                (nonnull IGListBindingSectionController *)sectionController
         didSelectItemAtIndex:(NSInteger)index
                    viewModel:(nonnull id)viewModel;

    Swift

    func sectionController(_ sectionController: IGListBindingSectionController, didSelectItemAt index: Int, viewModel: Any)

    Parameters

    sectionController

    The section controller the selection occured in.

    index

    The index of the selected cell.

    viewModel

    The view model that was bound to the cell.