I have a button that after being touch, brings up a tableView. As the first button position on top of the tableView after being touched, triggers event of the tableView as well. I tried to put “ended” phase so only brings up the tableView after disappearing the button but no luck. Is a work around it (preferably not a timer delay) or I have to use different positions for these two?
local function ProjectList( event ) print(event.phase) if ( "ended" == event.phase ) then print(event.phase) recordGroup:removeSelf() tableView.isVisible=true end end