gpt4 book ai didi

ios - 从 imageview 点击手势获取索引或标签值

转载 作者:技术小花猫 更新时间:2023-10-29 10:18:43 26 4
gpt4 key购买 nike

enter image description here

这是我们搜索任何应用程序时来自应用程序商店的图像。我还想添加相同的 scrollview 概念,它显示当前图像以及上一张和下一张图像的小预览。我可以在 Sample code 的帮助下制作此 View .但没有找到任何解决方案,当用户点击任何图像时如何获取索引或标记值。这样我就可以打开每张图片的详细信息页面。如果有人对此有想法,请帮助我。

提前致谢。

最佳答案

将手势识别器添加到必要的 ImageView :

UITapGestureRecognizer *frameTapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(frameTapGesture:)];
[_imgView addGestureRecognizer:frameTapGesture];

然后在手势处理程序中访问附加到的 View 手势识别器:

- (void)frameTapGesture:(UITapGestureRecognizer*)sender
{
UIView *view = sender.view; //cast pointer to the derived class if needed
NSLog(@"%d", view.tag);
}

关于ios - 从 imageview 点击手势获取索引或标签值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17389683/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com