0

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

谢谢,茉莉花。

4

1 回答 1

0

尝试这个

已编辑 创建一个 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];
}
];
于 2013-07-02T07:14:31.360 回答