1

我希望能够添加一个特定大小的新 UIImageView,它应该有一些 UIGestureRecognizers 检测 UIImageView 上的触摸。

一个子类 UIImageView 或如何最好地实现这一点?

我希望用户能够在运行时根据需要添加 UIImageViews,然后gestureRecognizer 将允许他们操作视图。

谢谢

4

1 回答 1

8

我认为您只是忘记启用 userInteractions。

UIImageView *imageView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"foo.png"]] autorelease];
imageView.userInteractionEnabled = YES;
UITapGestureRecognizer *tapGesture = [[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapAction:)] autorelease];
[imageView addGestureRecognizer:tapGesture];
[self.view addSubview:imageView];
于 2010-10-12T12:22:29.637 回答