图片点击事件

1 UIImageView *imageView = [[[UIImageView alloc] init];
2 imageView.image = [UIImage imageNamed:@"image.png"];
3 
4 //设置
5 imageView.userInteraction = YES; 6 //图片点击事件 7 UITapGestureRecognizer *gestureRecognize = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(clickImage)]; 8 [topView addGestureRecognizer:gestureRecognize]; 9 [gestureRecognize release];
原文地址:https://www.cnblogs.com/wangshengl9263/p/3243266.html