UIImageView响应点击事件

有时候会遇到点击一张图片,然后让这张图片触发一个事件,或者是跳转视图,想到的第一个方法就是用UIButton,将Button的背景图片属性设置为该图片,效果达到了,但不是最好的方法,直接触发方法


定义Image的对象


[cpp] view plaincopy

  1. UIImageView *imgView =[[UIImageView alloc] initWithFrame:CGRectMake(0, 0,320,100)];  

  2.     imgView.backgroundColor = [UIColor redColor];//因为没有设置image属性,为了显示出图片覆盖区域  

  3.     imgView.userInteractionEnabled=YES;  

  4.     UITapGestureRecognizer *singleTap =[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(onClickImage)];  

  5.     [imgView addGestureRecognizer:singleTap];  

  6.     [singleTap release];  

  7.      



响应方法


[cpp] view plaincopy

  1. -(void)onClickImage{  

  2.       

  3.     NSLog(@"图片被点击!");  

  4. }  


你可能感兴趣的:(背景图片响应事件)