优化表在Corona SDK中查看插入

时间:2013-07-04 07:10:07

标签: lua corona

此代码需要两秒钟才能处理。

print("before loop scholarships:"..system.getTimer())
for i = 1, scholarshipTableSize  do

-- Insert the row into the tableView
tableView:insertRow
{
    isCategory = false,
    rowHeight = 75,
    rowColor =      
    { 
        default = { 255, 232, 4 },
        over = { 0, 158, 255 },
    },
    lineColor = { 0, 0, 0 },
}
end

scholarshipTableSize大约在1200左右。如何优化此插入以使其执行速度更快?

1 个答案:

答案 0 :(得分:3)

在我更新到最新的电晕版本后,时间要好得多。大约2毫秒。

现在我正在使用build 2013.1137