在uiwebview中处理uiimage中的触摸事件

时间:2013-07-02 07:09:30

标签: uiwebview uiimage uigesturerecognizer

我正在另一个图像(称为主图像)上绘制一个图像(称为image1)并在本地保存该图像。现在我正在加载"主图像"在UIWebview中。没事。但现在我需要在触摸" image1"时处理事件。 请帮帮我。

谢谢, 茉莉。

1 个答案:

答案 0 :(得分:0)

试试这个

<强> EDITED 创建一个UIWebView对象'webview'并创建一个UITapGestureRecognizer对象'TapGesture'

然后

    TapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapAction:)];
    TapGesture.numberOfTapsRequired = 1;
  TapGesture.delegate = self;
    [self.webview TapGesture];

在这种情况下,一旦您点击图片,它就会调用'tapAction'方法,因为您可以添加您的代码

在TapAction中

你可以添加

[UIView animateWithDuration:1.0 animations:^
     {
         // you can add zooming frame here
     }
     completion:^(BOOL finished)
     {

      [self performTransition:UIViewAnimationOptionTransitionCrossDissolve];
}
];