IGListSingleSectionControllerDelegate

@protocol IGListSingleSectionControllerDelegate <NSObject>

A delegate that can receive selection events on an IGListSingleSectionController.

  • Tells the delegate that the section controller was selected.

    Declaration

    Objective-C

    - (void)didSelectSectionController:
                (nonnull IGListSingleSectionController *)sectionController
                            withObject:(nonnull id)object;

    Swift

    func didSelect(_ sectionController: ListSingleSectionController, with object: Any)

    Parameters

    sectionController

    The section controller that was selected.

    object

    The model for the given section.