如何取消UIImageView中显示复制按钮的功能?

发布于 2024-10-05 15:29:29 字数 54 浏览 2 评论 0原文

当我在imageView中单击图像时,我发现图像周围显示了一个复制按钮,如何取消它,非常感谢!

And when I click a image in my imageView , I found that showing a copy button around the image , how to cancel it , Thank you very much!

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

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

发布评论

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

评论(1

零度° 2024-10-12 15:29:29

为什么不使用 UIButton 而使用 UIImageView?
您可以将按钮设置为图像。而且,还可以定义自定义单击方法,您可以在其中加载不同的(更大的)图片...

如下所示:

UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; 
btn.frame = CGRectMake(40, 140, 240, 30);
[btn addTarget:self action:@selector(loadLargerImage) forControlEvents:UIControlEventTouchUpInside];
[btn setImage:[UIImage imageNamed:@"image.png"] forState:UIControlStateNormal];
[self.view addSubview:btn];

Why you don't use UIButton, instead of UIImageView?
You can set button to be represented as image. And also, can define custom click method, where you can load different (larger) pic...

Something like this:

UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; 
btn.frame = CGRectMake(40, 140, 240, 30);
[btn addTarget:self action:@selector(loadLargerImage) forControlEvents:UIControlEventTouchUpInside];
[btn setImage:[UIImage imageNamed:@"image.png"] forState:UIControlStateNormal];
[self.view addSubview:btn];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文