3

我正在开发一个 iOS 应用程序。

我添加了一个 UIPinchGestureRecognizer 来监听捏合动作。

[[self view]addGestureRecognizer:[[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(handlePinchOutGesture:)]];

-(void)handlePinchOutGesture:(UIPinchGestureRecognizer*)recognizer {
    if (recognizer.state == UIGestureRecognizerStateBegan) {
        // Do something

    } else if (recognizer.state == UIGestureRecognizerStateChanged) {
        // Do something

    } else {
       // Do something

    }
}

但是,我还想添加一个 UITapGestureRecognizer 以便在用户点击一个项目时它具有相同的效果。

有没有办法以编程方式模拟“捏出”手势?

4

1 回答 1

3

在 iOS 上很难合成一个触摸(或多点触摸)事件:您必须使用非公共 API,因此您很有可能在 Apple 审核期间被拒绝。

这是一个演示如何在 iPhone 上合成触摸事件的链接

http://www.cocoawithlove.com/2008/10/synthesizing-touch-event-on-iphone.html

于 2013-08-16T15:04:46.990 回答