I have used widget tabview in my app
i found my tableview performance (SDK 1093) takes two times than SDK 993
I found display.newText has poorer performance in 1093
it make my app become very slow…and very obvious
i use many newText in my row and it’s going to create more than 100 rows.
so it idel for 10 seconds. not bearable.
print("textstart",system.getTimer()) for i = 1, 1000 do display.newText( "111111111111111111", 0, 0, native.systemFontBold, 16 ) display.newText( "222222222222222222", 0, 0, native.systemFontBold, 16 ) display.newText( "333333333333333333", 0, 0, native.systemFontBold, 16 ) display.newText( "444444444444444444", 0, 0, native.systemFontBold, 16 ) display.newText( "555555555555555555", 0, 0, native.systemFontBold, 16 ) end print("textend",system.getTimer()) -- build 1073 -- textstart 78.755 -- textend 8410.159 -- textstart 87.94 -- textend 8685.673 ------------------------------------------ -- build 993 --textstart 79.937 -- textend 7414.591 --textstart 65.281 -- textend 7233.93