| 379 | } |
| 380 | |
| 381 | unsigned int CAPickerView::tableViewHeightForRowAtIndexPath(CATableView* table, unsigned int section, unsigned int row) |
| 382 | { |
| 383 | if (m_dataSource && !m_tableViews.empty()) |
| 384 | { |
| 385 | size_t component = m_tableViews.getIndex(table); |
| 386 | return m_dataSource->rowHeightForComponent(this, (unsigned int)component); |
| 387 | } |
| 388 | return 0; |
| 389 | } |
| 390 | |
| 391 | void CAPickerView::scrollViewDidEndDragging(CAScrollView* view) |
| 392 | { |
nothing calls this directly
no test coverage detected