0

我正在编写一个脚本来测试 iPhone 上的应用程序。我想放大图像。

我尝试做 pinchOpenFromToForDuration({x:80, y:150}, {x:30, y:150}, 2) 但我不断收到错误消息:

TypeError: 'undefined' is not a function (评估 'window.scrollViews()[0].images()[0].pinchOpenFromToForDuration({x:80, y:150}, {x:30, y:150}, 2)')

如果我在 iOS 模拟器中按住 Options 键并尝试放大图像,我可以做到。

图像具有以下坐标:rect{{-0, 115},{320, 200}}。

我究竟做错了什么?是否可以放大图像?

4

1 回答 1

2

问题是您试图调用pinchOpenFromToForDuration图像元素本身。捏合手势方法仅在 上可用UIATarget,因此您需要这样说:

target.pinchOpenFromToForDuration({x:80, y:150}, {x:30, y:150}, 2);

我希望各个UIAElement对象也有一个捏合方法,但这是我们目前最好的方法。

于 2012-12-03T20:59:32.433 回答