去掉CCListView分割线的方法。

CCListViewCell.cpp 文件
感谢好友修罗哈~

void CCListViewCell::draw(void)
{
    CCLayerColor::draw();
    CCSize size = this->getContentSize();
    CCListView *owner = this->getOwner();
    if (CCListViewCellSeparatorStyleSingleLine == m_nSeparatorStyle)
    {
        glLineWidth(1.0f);
        ccDrawColor4B(m_separatorLineColor.r, m_separatorLineColor.g, m_separatorLineColor.b, 255);

		/*
		//去掉分割线
        if (CCListViewModeHorizontal == owner->getMode())
        {
            ccDrawLine(CCPointMake(size.width, 0), CCPointMake(size.width, size.height));
        }
        else if (CCListViewModeVertical == owner->getMode())
        {
            ccDrawLine(CCPointMake(0, 0), CCPointMake(size.width, 0));
        }
		*/
    }
}