我在GMSMapView上给出了闪烁效果,其中引脚掉落。所以根据要求,我已经使用了5个图像来实现闪烁效果。现在我希望如果我点击图像而不是屏幕应该导航。所以我添加了UITapGestureRecognizer。但它不起作用。
以下是代码
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapDetected)];
[self.img_splashRound4 addGestureRecognizer:singleTap];
[self.img_splashRound4 setMultipleTouchEnabled:YES];
[self.img_splashRound4 setUserInteractionEnabled:YES];
-(void)tapDetected{
NSLog(@"single Tap on imageview");
[self acceptRequest];
}
任何人都可以指导我吗?