我可以在iPad上使用超低图像尺寸吗? - 动态代码

时间:2014-06-02 05:26:47

标签: livecode

我可以在iPad上使用超低图像尺寸吗?

我正在读这节课:http://lessons.runrev.com/m/15262/l/156530-how-do-i-support-different-device-screen-densities

我想创建一个滚动图像的页面。 首先当堆栈打开时,滚动组应显示超低图像。滚动组停止后,它应显示iPad Retina显示屏的超高图像。

我可以这样做吗?

1 个答案:

答案 0 :(得分:0)

您希望使用本机卷轴并使用acceleratedRendering:

on preOpenStack
   set the acceleratedRendering to true
end preOpenStack

然后在你的卡片上:

-- Create a native scrolling group
-- Create the image in the scrolling group
set the layerMode of myScrollingGroup to "scrolling"

您现在应该能够在任何iOS设备上完美平滑地浏览图像。