| 58 | { |
| 59 | public: |
| 60 | static TestCustomTableView* create(TableViewDataSource* dataSource, Size size) |
| 61 | { |
| 62 | auto table = new TestCustomTableView(); |
| 63 | table->initWithViewSize(size, nullptr); |
| 64 | table->autorelease(); |
| 65 | table->setDataSource(dataSource); |
| 66 | table->_updateCellPositions(); |
| 67 | table->_updateContentSize(); |
| 68 | |
| 69 | return table; |
| 70 | } |
| 71 | |
| 72 | virtual void onTouchEnded(Touch* touch, Event* event) override |
| 73 | { |
nothing calls this directly
no test coverage detected