Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

CAListViewDelegate


May 21, 2021 CrossApp



Class description

The data agent for CAListView


CAListViewDelegate method (click to see how to describe it).

Method Description
listViewDidSelectCellAtIndex Call when cell is selected
listViewDidDeselectCellAtIndex Called when unchecked


Description of the CAListViewDelegate method

virtual void listViewDidSelectCellAtIndex(CAListView *listView, unsigned int index)

Return value: void

Parameters:

Type The name of the argument Description
CAListView* Listview The current listView
unsigned int index The index value of the cell

Explanation: Call when cell is selected

virtual void listViewDidDeselectCellAtIndex(CAListView *listView, unsigned int index)

Return value: void

Parameters:

Type The name of the argument Description
CAListView* Listview The current listView
unsigned int index The index value of the cell

Explanation: Called when unchecked