这是我们搜索任何应用时来自应用商店的图片.我还想添加相同的滚动视图概念,在该概念中它显示当前图像以及上一个和下一个图像的小预览.我能够在 示例代码.但是没有找到当用户点击任何图像时如何获取索引或标记值的任何解决方案.这样我就可以打开每个图像的详细信息页面.如果有人对此有任何想法,请帮助我.
This is the image from app store whenever we search for any app. I also want to add the same scrollview concept in which it show the currentimage with small preview of previous and next image. I am able to make this view with the help of Sample code. But didn't find any solution that how to get index or tagvalue when user tap any of the image. So that I would be able to open the detail page for each image. If Someone has idea about this please help me.
提前致谢.
将手势识别器添加到必要的图像视图中:
Add gesture recognizer to the necessary image view:
UITapGestureRecognizer *frameTapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(frameTapGesture:)];
[_imgView addGestureRecognizer:frameTapGesture];
然后在手势处理程序中访问附加到的视图手势识别器:
Then in the gesture handler get access to the view gesture recognizer attached to:
- (void)frameTapGesture:(UITapGestureRecognizer*)sender
{
UIView *view = sender.view; //cast pointer to the derived class if needed
NSLog(@"%d", view.tag);
}
这篇关于从 imageview 点击手势获取索引或标签值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!