CCTableView help

When feeling CCTableview from loading data online it points to the bottom most entry in the table…

tableView = cocos2d::extension::CCTableView::create(this, CCSizeMake(s.width*0.9f, s.height*0.9f));
tableView~~>setDirection;
tableView~~>setAnchorPoint(ccp(0.5,0.5));
tableView~~>setPosition);
tableView~~>setVerticalFillOrder(cocos2d::extension::kCCTableViewFillTopDown); //have also tried kCCTableViewFillBottomUp
tableView~~>setDelegate;
tableView~~>setVisible(false); //Set true after data loaded
//tableView~~>reloadData; //Doing when data loaded.
this~~>addChild(tableView,0,tableview_tag);

Any idea about it…

use setContentOffset to position your contents in the table.