Cocos2d-x学习笔记(二十八)之 滚动列表类CCListView
滚动列表类CCListView是Cocos2D-x2.0及更高版本新增加的一个类。它继承与颜色布景层类CCLayerColor,继承关系如下:
CCListView、CCListViewCell->CCLayerColor。
CCListView类作为一个容器,它装载的CCListViewCell列表单元同样继承自颜色布景层类CCLayerColor。另外CCListViewDelegate用来处理滚动列表的代理事件。
1、CCListView类的主要成员函数如下:
initWithMode:参数传入,CCListViewModeHorizontal列表是水平的,CCListViewModeVertical列表是垂直的。
selectCellAtRow:选择某行的单元格。
setDelegateName:设置代理的名称。
unselectCellAtRow:空选择某行的单元格。
reload:重新载入。
insertCellsAtRow:在某行加入几个单元格。
deleteCellsAtRow:在某行删除几个单元格。
cellAtRow:获得某行的单元格。
getSeparatorStyle:获得分界形式。
setSeparatorStyle:设置分界形式CCListViewCellSeparatorStyleNone为空,CCListViewCellSeparatorStyleSingleLine为单行线。
2、CCListViewCell类的主要成员函数如下:
selected:选择。
unselected:取消选择。
getSeparatorStyle:获得分界形式。
setSeparatorStyle:设置分界形式,CCListViewCellSeparatorStyleNone为空,CCListViewCellSeparatorStyleSingleLine为单行线。
getSelectionColor:获得选中颜色。
setSelectionColor:设置选中颜色。
getSeparatorLineColor:获得分界线颜色。
setSeparatorLineColor:设置分界线颜色。
initWithColorWidthHeight:初始化单元格颜色宽高。
3、CCListViewDelegate类的主要成员函数如下:
CCListView_numberOfCells:设置单元格个数。
CCListView_cellForRow:每个单元格的初始化。
CCListView_didClickCellAtRow:单元格被选中时调用。
CCListView_didScrollToRow:滚到某格时被调用。