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
sectionControllerThe section controller the selection occured in.
indexThe index of the selected cell.
viewModelThe view model that was bound to the cell.
View on GitHub
IGListBindingSectionControllerSelectionDelegate Protocol Reference