类说明
CAListView的数据代理
CAListViewDelegate 方法(点击查看方法介绍)
| 方法 | 说明 | 
| listViewDidSelectCellAtIndex | 选中cell时调用 | 
| listViewDidDeselectCellAtIndex | 取消选中时调用 | 
CAListViewDelegate 方法说明
virtual void listViewDidSelectCellAtIndex(CAListView *listView, unsigned int index)
返回值:void
参数:
| 类型 | 参数名 | 说明 | 
| CAListView* | listView | 当前的listView | 
| unsigned int | index | cell的索引值 | 
解释:选中cell时调用
virtual void listViewDidDeselectCellAtIndex(CAListView *listView, unsigned int index)
返回值:void
参数:
| 类型 | 参数名 | 说明 | 
| CAListView* | listView | 当前的listView | 
| unsigned int | index | cell的索引值 | 
解释:取消选中时调用