About CCTableView

@ sprintf(path, “UI/img_fryList_bg.png”);
CCSprite* bg = CCSprite::create();
bg~~>initWithTexture);
bg~~>setPosition(ccp(0,0));
addChild(bg);

CCTableView* tableView = CCTableView::create(this,
CCSizeMake(*cellWidth,*cellHeight*4));
tableView~~>setDirection;
tableView~~>setDelegate(this);
tableView~~>setVerticalFillOrder;
tableView~~>reloadData();
//tableView~~>setAnchorPoint);
tableView~~>setPosition(ccp(0,0));
CCSize s = tableView->getContentSize();
addChild(tableView);
@
class FryList :public CCTableViewDataSource, public CCTableViewDelegate,public CCNode

But the “bg” can be showed,but the tableview can’t ,why?