概述
var tableView = new cc.TableView(this, cc.size(tableViewSize.width, tableViewSize.height));
tableView.setDirection(cc.SCROLLVIEW_DIRECTION_VERTICAL);
tableView.setPosition(tableViewPosition);
tableView.setAnchorPoint(tableViewAnchor);
tableView.setDelegate(this);
this.addChild(tableView);
tableView.retain();
//引用计数+1
tableView.reloadData();
this._tableView = tableView;
onExit: function () {
if (this._tableView)
this._tableView.release();
cc.Layer.prototype.onExit.call(this);
},
tableCellTouched: function (table, cell){
} //点击相应的Item去处理相应的操作tableCellAtIndex: function (table, idx) {} //创建具体的Item中的地方var idx = cell.getIdx();
numberOfCellsInTableView: function (table) { return data['arr'].length; }
tableCellSizeForIndex: function (table, idx) { return cellSize; }, //每一个Item尺寸
scrollViewDidScroll: function (view) { }, scrollViewDidZoom: function (view) { },
最后
以上就是温婉纸鹤为你收集整理的table View的全部内容,希望文章能够帮你解决table View所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复