非常像android中的listview

#pragma once;

#include "cocos2d.h"
using namespace cocos2d; //使用CCTableView必须包括扩展库和命名空间
#include "cocos-ext.h"
USING_NS_CC_EXT; //须要实现CCTabelViewDelegate和CCTabelViewDataSource这俩个接口
class tableTest : public cocos2d::CCLayer,public CCTableViewDelegate,public CCTableViewDataSource
{
public:
virtual bool init(); static cocos2d::CCScene* scene(); CREATE_FUNC(tableTest); //继承自以上的接口须要实现的方法例如以下
//从CCTableViewDataSource继承下来的 CCSize tableCellSizeForIndex(CCTableView * table,unsigned int index);
CCTableViewCell * tableCellAtIndex(CCTableView * table,unsigned int index);
unsigned int numberOfCellsInTableView(CCTableView * table);
virtual CCSize cellSizeForTable (CCTableView *table); //下面俩个函数能够覆写,也能够不覆写,是从CCTableViewDelegate继承下来的
void tableCellHighlight(CCTableView * table,CCTableViewCell * cell);
void tableCellUnhighlight(CCTableView * table,CCTableViewCell * cell);
void tableCellTouched(CCTableView * table,CCTableViewCell * cell);
virtual void tableCellWillRecycle (CCTableView *table, CCTableViewCell *cell);
//由于继承自CCScrollViewDelegate 所以要实现这俩个方法,里边一般都不写东西
void scrollViewDidScroll(CCScrollView *){};
void scrollViewDidZoom(CCScrollView *){};
};
#include "tableTest.h"
USING_NS_CC_EXT;
USING_NS_CC;
bool tableTest::init()
{
if ( !CCLayer::init() )
{
return false;
} CCSize size = CCDirector::sharedDirector()->getWinSize(); /*
创建一个竖直方向的tableview
*/ //初始化的时候第一个參数是CCTableViewDataSource。第二个參数代表tableview的大小
CCTableView * table = CCTableView::create(this,CCSize(100,320)); //设置delegate代理
table->setDelegate(this); //设置tableview的滑动的方向
//kCCScrollViewDirectionHorizontal 水平
//kCCScrollViewDirectionVertical 竖直
table->setDirection(kCCScrollViewDirectionVertical); //CCTableView默认是以左下角点设置坐标位置的,它继承自CCLayer,这一点不难理解
table->setPosition(ccp(size.width/5,0));
table->setDataSource(this);
this->addChild(table); /*
创建一个水平方向的tableview
*/
CCTableView * tableView = CCTableView::create(this,CCSize(size.width/2,50));
tableView->setDelegate(this);
tableView->setDirection( kCCScrollViewDirectionHorizontal);
tableView->setPosition(ccp(size.width/2,size.height/2));
table->setDataSource(this);
this->addChild(tableView);
//这句话一定要加上啊,意思是用现有的配置去刷新全部的cell方法被调用之后。系统会又一次运行一遍TableViewDelegate的相关函数。最基本的cellFor***方法,单元格的设置信息会被又一次运行一遍。 tableView->reloadData(); //相当android中adapte.notificydatachange(); return true;
} //这个函数是用来获得cell的
CCTableViewCell * tableTest::tableCellAtIndex(CCTableView * table,unsigned int index)
{
CCString * string = CCString::createWithFormat("%d",index+1); //获得一个可用的cell,由于在我们滑动cell的时候有些cell是显示的。有些不是显示出来的。把没有渲染的cell拿过来
//这样就不用又一次new出一个cell了,这种话能够减小内存的开销
CCTableViewCell * cell = table->dequeueCell();
if(!cell)
{
cell = new CCTableViewCell();
cell->autorelease(); //加入背景图片到cell中,便于区分边界
CCSprite * background = CCSprite::create("cell.png");
background->setAnchorPoint(ccp(0,0));
background->setPosition(CCPointZero);
cell->addChild(background,0); //加入文本信息到cell中
CCLabelTTF * text = CCLabelTTF::create(string->getCString(),"",20);
text->setPosition(ccp(25,25));
text->setTag(1);
text->setColor(ccc3(255,0,0));
cell->addChild(text,1); //加入精灵到cell的中心位置
CCSprite * sprite = CCSprite::create("icon.png");
sprite->setPosition(ccp(50,25));
cell->addChild(sprite,1);
}
//else中获得是没有渲染出来的cell,cell中原有的内容还存在
else
{
//改变原来cell中的文本信息
CCLabelTTF * text = (CCLabelTTF *)cell->getChildByTag(1);
text->setString(string->getCString());
} return cell;
} //这里设置每一个cell的大小
CCSize tableTest::tableCellSizeForIndex(CCTableView * table,unsigned int index)
{
if(index=3){
return CCSize(300,50);}
else{
return CCSize(100,50);
}
} //这里设置一共同拥有多少个cell
unsigned int tableTest::numberOfCellsInTableView(CCTableView * table)
{
return 20;
}
//和tableCellSizeForIndex有什么差别不明确
cocos2d::CCSize tableTest::cellSizeForTable(CCTableView *table)
{
return CCSize(200,50);
} //假设某个cell被点击了,则会调用此函数
void tableTest::tableCellHighlight(CCTableView * table,CCTableViewCell * cell)
{
CCLog("%d:tableCellHighlight!",cell->getIdx()+1);
} //点击之后会调用这个函数,观察这几个函数的调用顺序。发现highlight首先调用
//unhighlight然后调用,最后是tableCellTouched
void tableTest::tableCellUnhighlight(CCTableView * table,CCTableViewCell * cell)
{
CCLog("%d:tableCellUnhighlight!",cell->getIdx()+1);
}
//这里设置cell被点击以后的回调函数
void tableTest::tableCellTouched(CCTableView * table,CCTableViewCell * cell)
{
CCLog("%d:tableCellTouched!",cell->getIdx()+1);
}
void tableTest::tableCellWillRecycle(CCTableView *table, CCTableViewCell *cell)
{
CCLog("%d:tableCellWillRecycle!",cell->getIdx()+1);
}
cocos2d::CCScene* tableTest::scene()
{
CCScene* scene=CCScene::create();
scene->addChild(tableTest::create());
return scene;
}

CCTableView 简单样例的更多相关文章

  1. extern外部方法使用C#简单样例

    外部方法使用C#简单样例 1.添加引用using System.Runtime.InteropServices; 2.声明和实现的连接[DllImport("kernel32", ...

  2. spring事务详解(二)简单样例

    系列目录 spring事务详解(一)初探事务 spring事务详解(二)简单样例 spring事务详解(三)源码详解 spring事务详解(四)测试验证 spring事务详解(五)总结提高 一.引子 ...

  3. velocity简单样例

    velocity简单样例整体实现须要三个步骤,详细例如以下: 1.创建一个Javaproject 2.导入须要的jar包 3.创建须要的文件 ============================= ...

  4. 自己定义隐式转换和显式转换c#简单样例

    自己定义隐式转换和显式转换c#简单样例 (出自朱朱家园http://blog.csdn.net/zhgl7688) 样例:对用户user中,usernamefirst name和last name进行 ...

  5. VC6 鼠标钩子 最简单样例

    Windows系统是建立在事件驱动的机制上的,说穿了就是整个系统都是通过消息的传递来实现的.而钩子是Windows系统中非常重要的系统接口,用它能够截获并处理送给其它应用程序的消息,来完毕普通应用程序 ...

  6. gtk+3.0的环境配置及基于gtk+3.0的python简单样例

    /*********************************************************************  * Author  : Samson  * Date   ...

  7. java 使用tess4j实现OCR的最简单样例

    网上很多教程没有介绍清楚tessdata的位置,以及怎么配置,并且对中文库的描述也存在问题,这里介绍一个最简单的样例. 1.使用maven,直接引入依赖,确保你的工程JDK是1.8以上 <dep ...

  8. 使用SALT-API进入集成开发的简单样例

    测试的时候,可以CURL -K,但真正作集成的时候,却是不可以的. 必须,不可以让TOKEN满天飞吧. 现在进入这个阶段了.写个样例先: import salt import salt.auth im ...

  9. VB.net数据库编程(03):一个SQLserver连接查询的简单样例

    这个样例,因为在ADO.net入门已经专门学了,再次进行复习 一下. 主要掌握连接字串的情况. 过程就是: 1.引用System.Data.SqlClient.而Access中引用 的是System. ...

随机推荐

  1. row_number() over (partition by....order by...)用法 分组排序

    row_number() over (partition by....order by...)用法 分组排序 row_number() OVER (PARTITION BY COL1 ORDER BY ...

  2. J2SE知识点摘记(九)

    1.         线程操作的一些方法 方法名称              方法说明 public static int activeCount()             返回线程组中目前活动的线 ...

  3. ubuntu rc.local 无效 解决方案(转)

    为了让mysql开机启动,我将mysql命令添加到/etc/rc.local中,但怎么也运行不了.一开始认为只是/etc/rc.local的权限问题,但通过以下命令修改后,还是不起作用. sudo c ...

  4. Delphi 实现Ini文件参数与TEdit和TCheckBox绑定(TSimpleParam)

    在实际工作中,常遇到对Ini参数的修改,显示与保存问题. 如果手工写代码,会有很大的工作量. 本例把ini文件的参数与控件绑定起来,以达到方便使用的目的. 本例程共有2个单元 uSimpleParam ...

  5. Java学习疑惑(8)----可视化编程, 对Java中事件驱动模型的理解

    我们编写程序就是为了方便用户使用, 我觉得UI设计的核心就是简洁, 操作过于繁琐的程序让很大一部分用户敬而远之. 即使功能强大, 但是人们更愿意使用易于操作的软件. 近年流行起来的操作手势和逐渐趋于成 ...

  6. nautilus-open-terminal右键随处打开终端

    Nautilus-Open-Terminal : 可随处打开终端的 Nautilus 插件 nautilus-open-terminal-0.17-4.el6.x86_64 是一个让你随处都可以打开终 ...

  7. C++实现Http Post请求

    参考资料: http://apps.hi.baidu.com/share/detail/39003388 http://blog.csdn.net/yc0188/article/details/474 ...

  8. iOS 视图跳转

    //跳转 - ( void)present:( id )sender { NSLog ( @"the button,is clicked …" ); // 创建准备跳转的 UIVi ...

  9. #include <iostream>

    1 static_assert 2 std::nothrow 3 std::ref() 4 std::string 1 static_assert 执行编译时断言检查 语法 static_assert ...

  10. 面向对象程序设计-C++_课时24多态的实现

    所有带virtual的类的对象,里面最上面有一个隐藏的指针vptr,指向一张表vtable #include <iostream> using namespace std; class A ...