0

我有一个带有 UIScrollView 的 UIView。然后,我以编程方式向 scrollView 添加了一个手势识别器,用于向左或向右滑动。

我创建了 3 个 UIImageView,每个都有不同的 UIImage,比如 1、2 和 3。

我得到了它,所以每次滑动都会将新的 UIImageView 移动到视图的中心。但是现在我需要区分被点击的图像。实际的点击将启动服务器请求并获取数据,但我必须确定被点击的 UIImageView,因为每个 UIImage 都不同,并将向用户呈现服务器响应和点击的图像。

每个 UIImageView 实际上都有一个标签集;1, 2 & 3. 我的问题是,如何添加 UIButton/IBAction 到它?我正在考虑添加一个 UIButton 作为每个 UIImageView 的“子项”,但我不确定它是否可以完成,我不知道它是否是实现我想要的最佳方式,即能够区分哪个 UIImageView 被选中用户。

4

1 回答 1

0

我最终使用了一个带有背景图像的按钮,而不是具有类似按钮反应性的图像。

fourthButton = [UIButton buttonWithType:UIButtonTypeCustom];
    [fourthButton addTarget:self action:@selector(buttonHandler) forControlEvents:UIControlEventTouchDownRepeat];
    [fourthButton setTitle:@"SomeCardButton" forState:UIControlStateNormal];
    [fourthButton setImage:[UIImage imageNamed:@"MyCard-Value.png"] forState:UIControlStateNormal];
    [fourthButton setFrame:CGRectMake(0.0, 0.0, 40.0, 40.0)];
于 2013-03-15T02:38:28.697 回答