gpt4 book ai didi

iphone - 在主uiview的 subview 上获取点击事件

转载 作者:可可西里 更新时间:2023-11-01 05:00:58 28 4
gpt4 key购买 nike

我有一个包含滚动图像 + 分页的 View 。我已将这些图像添加到 UIVIEW 上,并将此 UIView 添加到主视图。我想在 ScrollView 中检测图像上的点击事件并在主视图中处理它们。

我该怎么做?

请帮忙

最佳答案

你可以用手势识别器解决这个问题。

// In the view controller where you create the subviews
// (not sure from your question, but I think you are adding image views to a scroll view

UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake...];
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(imageViewTapped:)];
[imageView addGestureRecognizer:tap];

现在,这将在 ImageView 被点击时被调用

- (void)imageViewTapped:(UITapGestureRecognizer *)gr {

UIImageView *theImageViewThatGotTapped = (UIImageView *)gr.view;
}

关于iphone - 在主uiview的 subview 上获取点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9985927/

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