cocos2d-lua3.7控件篇(一)-EditBox


一、查看EditBox的C++代码

3.7之前版本的uiinput已经没有了,新版本采用的ccui.EditeBox ,通过添加回调函数的方式实现监听。


我们打开UIEditBox.h查看可以使用的方法。

它为我们提供了两个构造函数:

             * create a edit box with size.
             * @return An autorelease pointer of EditBox, you don't need to release it only if you retain it again.
             */
            static EditBox* create(const Size& size,
                                   Scale9Sprite* normalSprite,
                                   Scale9Sprite* pressedSprite = nullptr,
                                   Scale9Sprite* disabledSprite = nullptr);

            
            /**
             * create a edit box with size.
             * @return An autorelease pointer of EditBox, you don't need to release it only if you retain it again.
             */
            static EditBox* create(const Size& size,
                                   const std::string& pNormal9SpriteBg,
                                   TextureResType texType = TextureResType::LOCAL);


二、分析EditBox基本实现

如果仔细分析可以看到,各个平台都实现了自己的editBox,他们都继承并且实现了UIEditBoxImpl


三、使用EditBox

我们如何使用呢?首先自己找个loading-bg.png图片,然后

如下代码



 local editbox = ccui.EditBox:create(cc.size(200,40),"loading-bg.png",ccui.TextureResType.localType)
 editbox:setPosition(100,100)
  self:addChild(editbox)
  local function editboxEventHandler(eventType)
        print(eventType)
      if eventType == "began" then
          -- triggered when an edit box gains focus after keyboard is shown
         
      elseif eventType == "ended" then
          -- triggered when an edit box loses focus after keyboard is hidden.
      elseif eventType == "changed" then
          -- triggered when the edit box text was changed.
      elseif eventType == "return" then
          -- triggered when the return button was pressed or the outside area of keyboard was touched.
      end
  end

  editbox:registerScriptEditBoxHandler(editboxEventHandler)

通过控制台我们就可以查看到了。




转载于:https://www.cnblogs.com/hiwoshixiaoyu/p/10034958.html

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值