本文整理汇总了C++中TableViewCell::removeChildByTag方法的典型用法代码示例。如果您正苦于以下问题:C++ TableViewCell::removeChildByTag方法的具体用法?C++ TableViewCell::removeChildByTag怎么用?C++ TableViewCell::removeChildByTag使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TableViewCell
的用法示例。
在下文中一共展示了TableViewCell::removeChildByTag方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: tableCellAtIndex
TableViewCell* CMyTableView::tableCellAtIndex(TableView *table, ssize_t idx)
{
const int tagLabel = 666;
const int tagSprite = 777;
bool hasData = true;
TableViewCell *pCell = table->dequeueCell();
if( !pCell )
{
pCell = new TableViewCell();
pCell->autorelease();
hasData = false;
}
else
{
pCell->removeChildByTag( tagSprite );
if( idx != m_lastTouchIdx && pCell->getChildByTag(E_Tag_SelectBg) )
{
pCell->removeChildByTag( E_Tag_SelectBg );
}
}
if( idx >= m_viewData.size() )
{
CCLog( "[CMyTableView::tableCellAtIndex]Error. idx(%d) greater than data.Size(%d)", (int)idx, (int)m_viewData.size() );
return NULL;
}
int off = 5;
int x = off;
CCSprite *pSprite = NULL;
if( m_viewData[idx].useRect )
{
pSprite = CCSprite::create( m_viewData[idx].icon.c_str(), m_viewData[idx].iconRect );
}
else
{
pSprite = CCSprite::create( m_viewData[idx].icon.c_str() );
}
if( pSprite )
{
CCSize sz = pSprite->getContentSize();
float scale = m_cellSz.height / sz.height;
sz = sz * scale;
pSprite->setScale( scale );
pSprite->setPosition(
ccp( sz.width/2 + off, m_cellSz.height/2) );
pCell->addChild( pSprite, 1, tagSprite );
x += (pSprite->getContentSize().width * scale) + off;
}
else
{
CCLog( "[CMyTableView::tableCellAtIndex]Error. can not load sprite:%s", m_viewData[idx].icon.c_str() );
}
CCLabelTTF *pLabel = NULL;
if( hasData )
{
pLabel = (CCLabelTTF*)pCell->getChildByTag( tagLabel );
CCAssert( pLabel, "get label child error" );
pLabel->setString( m_viewData[idx].text.c_str() );
}
else
{
pLabel = CCLabelTTF::create( m_viewData[idx].text.c_str(), "Arial", 20.0 );
pCell->addChild( pLabel, 1 );
}
if( pLabel )
{
pLabel->setAnchorPoint( ccp(0.5, 0.5) );
pLabel->setPosition( ccp(x + pLabel->getContentSize().width/2, m_cellSz.height/2) );
pLabel->setTag( tagLabel );
pLabel->setColor( ccBLACK );
}
// 判断是否要重新加上选中的背景
if( idx == m_lastTouchIdx && !pCell->getChildByTag(E_Tag_SelectBg) )
{
_AddSelectBg( pCell );
m_lastTouchCell = pCell;
}
pCell->setUserData( m_viewData[idx].data );
return pCell;
}