gpt4 book ai didi

ios - UIImageView 上的 UIGestureRecognizer

转载 作者:IT老高 更新时间:2023-10-28 12:16:08 25 4
gpt4 key购买 nike

我有一个 UIImageView,我希望它能够调整大小和旋转等。

UIGestureRecognizer可以添加到UIImageView吗?

我想在运行时创建的 UIImageView 中添加旋转和捏合识别器。

如何添加这些识别器?

最佳答案

检查 userInteractionEnabledUIImageView 上是否为 YES。然后你可以添加一个手势识别器。

imageView.userInteractionEnabled = YES;
UIPinchGestureRecognizer *pgr = [[UIPinchGestureRecognizer alloc]
initWithTarget:self action:@selector(handlePinch:)];
pgr.delegate = self;
[imageView addGestureRecognizer:pgr];
[pgr release];
:
:
- (void)handlePinch:(UIPinchGestureRecognizer *)pinchGestureRecognizer
{
//handle pinch...
}

关于ios - UIImageView 上的 UIGestureRecognizer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3907397/

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