0
我有一組圖像,我想添加到我的滾動視圖使用for循環。我的圖像集按此順序命名爲Route01.png,Route02.png ...。我如何編碼我的for循環,以便我可以順序加載這些圖像。我的問題主要是關於如何編碼第2行display.newImage()
,我知道我做得不對。提前致謝。使用for循環顯示/加載一系列圖像
for i=1, 50 do
image[i] = display.newImage("images/route/Route[i].png")
image[i].x = display.contentCenterX
image[i].y = spacing
scrollView:insert(image[i])
end