IKImage手势变焦旋转

时间:2012-06-21 09:14:57

标签: cocoa zoom rotation gesture ikimageview

在我的应用程序中,我使用IKImageview预览图像,默认情况下它支持两个手指手势,如向上,向下,向左,向右移动。 现在我想为它添加旋转和缩放手势,有没有人有任何好主意? 非常感谢你。

有没有人知道如何将IKImageview子类化以支持缩放手势?

1 个答案:

答案 0 :(得分:0)

最后弄明白了。 只需继承IKImageView并添加:

- (void)rotateWithEvent:(NSEvent *)event{
    [self setFrameCenterRotation:([self frameCenterRotation] + [event rotation])];
}

问题解决了!