Cocos2d-x CCControlSwitch控件类使用实例 Cocos2d-x UI开发之CCControlSwitch控件类使用实例

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Cocos2d-x CCControlSwitch控件类使用实例 Cocos2d-x UI开发之CCControlSwitch控件类使用实例

皂荚花   2021-03-19 我要评论
想了解Cocos2d-x UI开发之CCControlSwitch控件类使用实例的相关内容吗,皂荚花在本文为您仔细讲解Cocos2d-x CCControlSwitch控件类使用实例的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Cocos2d-x,UI开发,CCControlSwitch,控件类,下面大家一起来学习吧。

CCControlSwitch是开关按钮,关于控件使用时的一些配置,请参见文章:UI开发之控件类-CCControlButton。以下的演示中出现的key和value代表什么意思,知道的人说一声。

bool HelloWorld::init()
{
  bool bRet = false;
  do
  {

    CC_BREAK_IF(! CCLayer::init());

		//参数就不说了,看一下你的资源文件就明白了
		CCControlSwitch * controlSwitch = CCControlSwitch::create(
			CCSprite::create("extensions/switch-mask.png"),
			CCSprite::create("extensions/switch-on.png"),
			CCSprite::create("extensions/switch-off.png"),
			CCSprite::create("extensions/switch-thumb.png"),
			CCLabelTTF::create("On", "Arial-BoldMT", 16),
			CCLabelTTF::create("Off", "Arial-BoldMT", 16));

		//设置位置
		controlSwitch->setPosition(ccp(240,160));

		//这个函数对应初始时,开关的状态是开还是关。
		controlSwitch->setOn(true);
		//这个函数对应开关能否使用。
		controlSwitch->setEnabled(true);

		//添加事件监听
		controlSwitch->addTargetWithActionForControlEvents(this,cccontrol_selector(HelloWorld::valueChanged),
			CCControlEventValueChanged);

		this->addChild(controlSwitch);

    bRet = true;
  } while (0);

  return bRet;
}

void HelloWorld::valueChanged(CCObject * pSender,CCControlEvent controlEvent)
{
	CCControlSwitch * controlSwitch = (CCControlSwitch *)pSender;
	CCLog("click");
}

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们