如何设置滚动到cc.TableView的最后一个单元格为tbl.scrollTo(x,y)或tbl.scrollToBottom()?
答案 0 :(得分:1)
tableView.setContentOffset(cc.p(0,0));
CCTableView的内容偏移是一个点cc.p(x,y),其中x代表水平偏移,y代表垂直。
在垂直填充的CCTableView中,其y内容偏移范围为
tableView.getViewSize().height-tableView.getContentSize().height // tableView at top
到
0 // tableView at bottom
和x内容偏移等于0.