CATableViewDelegate
2018-09-08 15:42 更新
类说明
CATableView的代理类,用于响应拖动和点击事件。
CATableViewDelegate 方法(点击查看方法介绍)
方法 | 说明 |
tableViewDidSelectRowAtIndexPath | 选中cell时触发 |
tableViewDidDeselectRowAtIndexPath | 取消选择时触发 |
CATableViewDelegate 方法说明
virtual void tableViewDidSelectRowAtIndexPath(CATableView* table, unsigned int section, unsigned int row)
返回值:void
参数:
类型 | 参数名 | 说明 |
CATableView* | table | 当前tableView |
unsigned int | section | cell所属的区域 |
unsigned int | row | cell所在行数 |
解释:选中cell时触发
virtual void tableViewDidDeselectRowAtIndexPath(CATableView* table, unsigned int section, unsigned int row)
返回值:void
参数:
类型 | 参数名 | 说明 |
CATableView* | table | 当前tableView |
unsigned int | section | cell所属的区域 |
unsigned int | row | cell所在行数 |
解释:取消选择时触发
以上内容是否对您有帮助:
更多建议: