quick与studio不兼容的问题

ListView【裁切内容】不打勾没问题,一旦打勾就出现以上现象。。quick直接变成白底的,实际要裁剪的内容也没裁剪掉。。反倒把别的要显示的对象掩掉了。。

把你的这个例上传上来吧

local MainScene = class("MainScene", function()
    return display.newScene("MainScene")
end)

function MainScene:ctor()
    cc.ui.UILabel.new({
            UILabelType = 2, text = "Hello, World", size = 64})
        :align(display.CENTER, display.cx, display.cy)
        :addTo(self)
end

function MainScene:onEnter()
    local uiLayer = AppLoader.loadUILayer("MainScene.csb")
    self:addChild(uiLayer)
    local startBtn = uiLayer:getChildByTag(1)
    startBtn:addTouchEventListener(self.onClick)
end

function MainScene.onClick(sender, eventType)
    -- body
    if eventType == 2 then
        print("按钮单击触发!")
    end
end

function MainScene:onExit()
end

return MainScene



AppLoader = {}

function AppLoader.loadUILayer(url)
    -- body
    local node, width, height = cc.CSLoader:createNode(url)
    node.width = width
    node.height = height
    return node
end

return Apploader


```

只是把 cc.CSLoader:createNode(url) 封装了一下。。studio随便生成个界面就这样。。

拜托帮忙查证一下。。 :6:

大家没有遇到过类似的错误吗?

你用的是CSLoader,那很有可能是,你生成csb的版本与CSLoader的版本不匹配的原因,你查下,你用的ccs,推荐用哪个版本的cocos才行

引擎更新到3.4了,坐等quick3.4.。。

studio现在的2.1支持3.3不?
加载出错,什么都没提示,但是能加载sample里的例子

貌似是不兼容。。。