本文整理汇总了C++中CATableViewCell::removeFromSuperview方法的典型用法代码示例。如果您正苦于以下问题:C++ CATableViewCell::removeFromSuperview方法的具体用法?C++ CATableViewCell::removeFromSuperview怎么用?C++ CATableViewCell::removeFromSuperview使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CATableViewCell
的用法示例。
在下文中一共展示了CATableViewCell::removeFromSuperview方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: recoveryTableCell
void CATableView::recoveryTableCell()
{
CCRect rect = this->getBounds();
rect.origin = getContentOffset();
rect.origin.y -= rect.size.height * 0.1f;
rect.size.height *= 1.2f;
std::map<CAIndexPath2E, CATableViewCell*>::iterator itr;
for (itr=m_pUsedTableCells.begin();
itr!=m_pUsedTableCells.end();
itr++)
{
CATableViewCell* cell = itr->second;
CC_CONTINUE_IF(cell == NULL);
CCRect cellRect = cell->getFrame();
CC_CONTINUE_IF(rect.intersectsRect(cellRect));
m_pFreedTableCells[cell->getReuseIdentifier()].pushBack(cell);
cell->removeFromSuperview();
cell->resetTableViewCell();
itr->second = NULL;
CAView* line = m_pUsedLines[itr->first];
CC_CONTINUE_IF(line == NULL);
m_pFreedLines.pushBack(line);
line->removeFromSuperview();
m_pUsedLines[itr->first] = NULL;
}
}
示例2: clearData
void CATableView::clearData()
{
m_nSections = 0;
m_nRowsInSections.clear();
m_nSectionHeaderHeights.clear();
m_nSectionFooterHeights.clear();
std::vector<std::vector<unsigned int> >::iterator itr;
for (itr=m_nRowHeightss.begin(); itr!=m_nRowHeightss.end(); itr++)
{
itr->clear();
}
m_nRowHeightss.clear();
std::vector<std::vector<CCRect> >::iterator itr2;
for (itr2=m_rTableCellRectss.begin(); itr2!=m_rTableCellRectss.end(); itr2++)
{
itr2->clear();
}
m_rTableCellRectss.clear();
m_rSectionRects.clear();
std::vector<std::vector<CCRect> >::iterator itr3;
for (itr3=m_rLineRectss.begin(); itr3!=m_rLineRectss.end(); itr3++)
{
itr3->clear();
}
m_rLineRectss.clear();
m_pSelectedTableCells.clear();
m_pUsedLines.clear();
std::map<CAIndexPath2E, CATableViewCell*>::iterator itr4;
for (itr4=m_pUsedTableCells.begin(); itr4!=m_pUsedTableCells.end(); itr4++)
{
CATableViewCell* cell = itr4->second;
CC_CONTINUE_IF(cell == NULL);
m_pFreedTableCells[cell->getReuseIdentifier()].pushBack(cell);
itr4->second = NULL;
cell->removeFromSuperview();
cell->resetTableViewCell();
}
m_pUsedTableCells.clear();
m_pSectionHeaderViews.clear();
m_pSectionHeaderViews.clear();
}