gpt4 book ai didi

ios - Corona SDK : storyboard. gotoScene 效果

转载 作者:行者123 更新时间:2023-11-28 22:35:34 26 4
gpt4 key购买 nike

在我的菜单 Storyboard和名为“搜索”的 Storyboard之间转换时,我正在尝试使用效果 slideLeft。

场景变化有效,但是没有效果应用于过渡。或者..根本没有过渡。新场景刚刚出现。

我在这里错过了什么?

谢谢。

local function goToPage(event)
if (event.phase == "ended") then
changeButtonIndentation()
local nextSceneName = "pages." .. event.target.name
if (storyboard.getCurrentSceneName() ~= nextSceneName) then
print("From page: " .. storyboard.getCurrentSceneName())
print("To page: " ..nextSceneName)

local options =
{
effect = "slideLeft",
time = 1000
}
storyboard.gotoScene("pages.search", options)
currentActivePage = event.target.name
print(event.target.name)
end
end
changeButtonIndentation()
end

编辑:所以 appearently 选项 工作。如果我增加选项时间 参数,我注意到搜索 Storyboard 上的某些按钮在1 秒内不可点击。但是效果不起作用。

最佳答案

一个常见的错误是您忘记将 View 元素添加到 self.view 组中。通常, Storyboard模板在 scene:createScene 函数 的开头包含 local group = self.view。尝试将您的 View 对象插入该组。

关于ios - Corona SDK : storyboard. gotoScene 效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16142160/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com