如何转换识别器视图的类型?

发布于 2024-11-19 03:21:34 字数 176 浏览 3 评论 0原文

-(void)tapDetected:(UIGestureRecognizer*)recognizer{
(UIImageView)(recognizer.view).tag)
    ;} 

我想将识别器视图的类型转换为图像视图,以便我可以使用图像标签作为参考。我怎样才能做到这一点?

-(void)tapDetected:(UIGestureRecognizer*)recognizer{
(UIImageView)(recognizer.view).tag)
    ;} 

I want to convert type of recognizer's view to imageview so that i can use tag of image as a reference. how can i do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

才能让你更想念 2024-11-26 03:21:34

tag 属性是在 UIView 中声明的,而不是在 UIImageView 中声明的。不需要演员阵容。

NSInteger myTag = recognizer.view.tag;

出于说明目的,如果您想要访问其 image 属性,这就是将视图强制转换为 UIImageView 的方法:

UIImage *img = ((UIImageView *)recognizer.view).image;

为了便于使用,您可以使用局部变量使后续访问更清晰:

UIImageView *imageView = (UIImageView *)recognizer.view;
UIImage *img = imageView.image;

The tag property is declared in UIView, not UIImageView. No cast is needed.

NSInteger myTag = recognizer.view.tag;

For illustration purposes, this is how you would cast the view to UIImageView if you wanted, for example, access to its image property:

UIImage *img = ((UIImageView *)recognizer.view).image;

For ease of use, you can use a local variable to make subsequent accesses cleaner:

UIImageView *imageView = (UIImageView *)recognizer.view;
UIImage *img = imageView.image;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文