cocos2d-js tableView
2129 단어 cocoscocos2d-js
var Cell = cc.TableViewCell.extend({
ctor: function () {
this._super();
this.addChild(ccs.load(res.cell_json).node);
},
draw: function (ctx) {
this._super(ctx);
},
getNode: function () {
return this.children[0];
}
});
var tableView = new cc.TableView(this, cc.size(993, 454));
tableView.setDirection(cc.SCROLLVIEW_DIRECTION_VERTICAL);
tableView.setPosition(0, 0);
tableView.setAnchorPoint(0, 0);
tableView.setDelegate(this);
$('panel.tableview').addChild(tableView);
tableView.setName("_tableView");
tableView.retain();
tableView.reloadData();
mTableView = tableView;
this._tableView = tableView;
scrollViewDidScroll: function (view) {
},
scrollViewDidZoom: function (view) {
},
tableCellTouched: function (table, cell) {
var idx = cell.getIdx();
return;
},
tableCellTouched2: function () {
cc.log("cell touched at index: ");
return;
},
tableCellSizeForIndex: function (table, idx) {
return cc.size(993, 93)
},
tableCellAtIndex: function (table, idx) {
var cell = table.dequeueCell();
if (!cell) {
//
cell = new CustomTableViewCell();
//
cell = new cc.TableViewCell();
var row0 = ccs.load(res.cell_json, 'res/').node;
row0.setName('cellrow');
cell.addChild(row0);
}
// tableview cell
},
numberOfCellsInTableView: function (table) {
// return data.length;
return data.length;
}
mTableView idx item
mTableView.removeCellAtIndex(idx);
mTableView :
var size = mTableView.getContentSize();
mTableView.setContentSize(cc.size(size.width, size.height - 78));
mTableView.reloadData();
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
cocos 애니메이션 첫 번째 프레임으로 중지텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.