get index or tag value from imageview tap gesture(从 imageview 点击手势获取索引或标签值)
问题描述
这是我们搜索任何应用时来自应用商店的图片.我还想添加相同的滚动视图概念,在该概念中它显示当前图像以及上一个和下一个图像的小预览.我能够在 示例代码.但是没有找到当用户点击任何图像时如何获取索引或标记值的任何解决方案.这样我就可以打开每个图像的详细信息页面.如果有人对此有任何想法,请帮助我.
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 点击手势获取索引或标签值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 imageview 点击手势获取索引或标签值
基础教程推荐
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01