在我的应用程序中,我使用IKImageview预览图像,默认情况下它支持两个手指手势,如向上,向下,向左,向右移动。 现在我想为它添加旋转和缩放手势,有没有人有任何好主意? 非常感谢你。
有没有人知道如何将IKImageview子类化以支持缩放手势?
答案 0 :(得分:0)
最后弄明白了。
只需继承IKImageView
并添加:
- (void)rotateWithEvent:(NSEvent *)event{
[self setFrameCenterRotation:([self frameCenterRotation] + [event rotation])];
}
问题解决了!