0

我通过以下教程使用 UITouches 实现了一个绘画应用程序RayWenderlich

使用 UIKit 制作一个简单的绘图应用程序

我成功地完成了我的绘画。

但是 *我需要设置放大和缩小功能*s,

所以我在 UIScrollView 上添加了我的 ImageViews。

但是由于 UITouches 不能在 UIScrollView 上工作,所以油漆不能工作


I know due to scrollable behavior touches are are not working,
But even after i disable the scrollable option its did not works.

使用 Pinch Guesters 实现了缩放功能,但是它无法看到缩放的外侧,它只能在窗口中看到缩放的图像。

任何人都可以建议我如何处理油漆应用程序中的完美缩放

4

1 回答 1

0

如果您想要 UIScrollView 上的以下触摸方法

• touchesBegan

• touchesEnded

• touchesMoved

• touchesCancelled

那么你需要继承你的 UIScrollView 然后你可以实现所有这些方法:

干杯!!

于 2013-10-11T11:54:39.133 回答