在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
类说明 CATableView的数据代理类,用于定义tableView的数据接口。 CATableViewDataSource 方法(点击查看方法介绍)
CATableViewDataSource 方法说明 virtual CATableViewCell* tableCellAtIndex(CATableView* table, const DSize& cellSize, unsigned int section, unsigned int row) = 0; 返回值:CATableViewCell* 参数:
解释:获取指定cell virtual unsigned int tableViewHeightForRowAtIndexPath(CATableView* table, unsigned int section, unsigned int row) = 0; 返回值:unsigned int 参数:
解释:获取指定的cell高度 virtual unsigned int numberOfRowsInSection(CATableView* table, unsigned int section) = 0; 返回值:unsigned int 参数:
解释:获取对应的section所包含的cell个数 virtual unsigned int numberOfSections(CATableView* table); 返回值:unsigned int 参数:
解释:获取tableview包含的section个数 virtual CAView* tableViewSectionViewForHeaderInSection(CATableView* table, const DSize& viewSize, unsigned int section); 返回值:CAView* 参数:
解释:在tableView中通过索引获取头部Section virtual unsigned int tableViewHeightForHeaderInSection(CATableView* table, unsigned int section); 返回值:unsigned int 参数:
解释:在tableView中通过索引获取头部Section高度 virtual CAView* tableViewSectionViewForFooterInSection(CATableView* table, const DSize& viewSize, unsigned int section); 返回值:CAView* 参数:
解释:在tableView中通过索引获取尾部Section virtual unsigned int tableViewHeightForFooterInSection(CATableView* table, unsigned int section); 返回值:unsigned int 参数:
解释:在tableView中通过索引获取尾部Section高度 virtual void tableViewWillDisplayCellAtIndex(CATableView* table, CATableViewCell* cell, unsigned int section, unsigned int row) {}; 返回值:void 参数:
解释:回调当前将要显示的tableView |
请发表评论