CCControlSwitch 开关

新建工程,名为testSwitch

修改HelloWorldScene.h

#ifndef __HELLOWORLD_SCENE_H__

#define __HELLOWORLD_SCENE_H__


#include "cocos2d.h"

#include "cocos-ext.h"

class HelloWorld : public cocos2d::CCLayer

{

public:

    // Method 'init' in cocos2d-x returns bool, instead of 'id' in cocos2d-iphone (an object pointer)

    virtual bool init();


    // there's no 'id' in cpp, so we recommend to return the class instance pointer

    static cocos2d::CCScene* scene();    

  

    // preprocessor macro for "static create()" constructor ( node() deprecated )

    CREATE_FUNC(HelloWorld);

};


#endif // __HELLOWORLD_SCENE_H__

修改HelloWorldScene.cpp

#include "HelloWorldScene.h"

#include "SimpleAudioEngine.h"


using namespace cocos2d;

using namespace CocosDenshion;

using namespace extension;

CCScene* HelloWorld::scene()

{

    // 'scene' is an autorelease object

    CCScene *scene = CCScene::create();

    

    // 'layer' is an autorelease object

    HelloWorld *layer = HelloWorld::create();


    // add layer as a child to scene

    scene->addChild(layer);


    // return the scene

    return scene;

}


// on "init" you need to initialize your instance

bool HelloWorld::init()

{

    //

    // 1. super init first

    if ( !CCLayer::init() )

    {

        return false;

    }

    CCControlSwitch *pSwitch=CCControlSwitch::create(CCSprite::create("switch-mask.png"),

                                                     CCSprite::create("switch-on.png"),

                                                     CCSprite::create("switch-off.png"),

                                                     CCSprite::create("switch-thumb.png"),

                                                     CCLabelTTF::create("", "Arial-BoldMT", 16),

                                                     CCLabelTTF::create("", "Arial-BoldMT", 16)

                                                     );

    pSwitch->setPosition(ccp(200,200));

    //设置关闭状态

    pSwitch->setOn(false);

    //设置可操作

    pSwitch->setEnabled(true);

    //获取是否为打开(on)

    CCLOG("是否打开状态:%i",pSwitch->isOn());

    //获取当前开关状态是否为手动拖动开关进行的

    CCLOG("是否手动拖动的开关:%i",pSwitch->hasMoved());

    addChild(pSwitch);


    return true;

}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值