| 468 | } |
| 469 | |
| 470 | void ScrollView::stoppedAnimatedScroll(Node* /*node*/) |
| 471 | { |
| 472 | this->unschedule(AX_SCHEDULE_SELECTOR(ScrollView::performedAnimatedScroll)); |
| 473 | // After the animation stopped, "scrollViewDidScroll" should be invoked, this could fix the bug of lack of tableview |
| 474 | // cells. |
| 475 | if (_delegate != nullptr) |
| 476 | { |
| 477 | _delegate->scrollViewDidScroll(this); |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | void ScrollView::performedAnimatedScroll(float /*dt*/) |
| 482 | { |
nothing calls this directly
no test coverage detected