Hello,
There seems to be an issue starting with build 2863 regarding inserting display objects into groups. I’ve attached a sample code snippet to demonstrate the problem.
The code below renders a green background, red navigation bar and a table view. On build 2863 onward, you will notice that there is no red navigation bar. However, if you run the same code on build 2862, it renders fine.
Simply copy the code in a main.lua to test for yourself.
widget = require("widget") local group = display.newGroup() local background = display.newRect(0, 0, display.contentWidth, display.contentHeight) background.anchorX, background.anchorY = 0, 0 background.fill = {0, 1, 0} local nav\_bar = display.newRect(0, 0, display.contentWidth, 60) nav\_bar.anchorX, nav\_bar.anchorY = 0, 0 nav\_bar.fill = {1, 0, 0} local table\_view = widget.newTableView { left = 0, top = nav\_bar.contentBounds.yMax, width = display.contentWidth, height = display.contentHeight - nav\_bar.height, horizontalScrollDisabled = true, backgroundColor = {0.5, 0.5, 0.5} } for i=1, 10 do table\_view:insertRow({}) end group:insert(background) group:insert(table\_view) group:insert(nav\_bar)
Best,
Shehab