0

我的 viewDidLoad 方法中有以下代码。这是一个带有滚动视图和页面控制器的 uiviewcontroller。

我有以下代码,它从数组创建视图在第 3 页上放置了一个按钮:

 for (int i = 0; i < imageNames.count; i++) {
CGRect frame;
frame.origin.x = self.scrollView.frame.size.width * i;
frame.origin.y = 0;
frame.size = self.scrollView.frame.size;

UIView *subview = [[UIView alloc] initWithFrame:frame];

UIImageView *myImageView =[[UIImageView alloc] initWithFrame:CGRectMake(0.0,0.0,self.view.frame.size.width,self.view.frame.size.height)];

myImageView.image=[UIImage imageNamed:[imageNames objectAtIndex:i]];

[subview addSubview: myImageView];


UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[button addTarget:self 
           action:@selector(doSomething:)
 forControlEvents:UIControlEventTouchDown];
[button setTitle:@"Show View" forState:UIControlStateNormal];

if(i == 1){
[myImageView addSubview:button];
}
[self.scrollView addSubview:subview];

}

我有一个 ibaction 将关闭这个视图,因为它是模态视图: -(IBAction)doSomething:(id)sender{ [self dismissModalViewControllerAnimated:YES]; }

问题是这个按钮没有响应。它甚至不会在触摸时突出显示,更不用说调用 doSomething 方法了。

我究竟做错了什么?

4

2 回答 2

3

请注意确定这是否是问题,但可能。

UIImageView文档:

新的图像视图对象默认配置为忽略用户事件。如果要在 UIImageView 的自定义子类中处理事件,则必须在初始化对象后将 userInteractionEnabled 属性的值显式更改为 YES。

于 2012-06-30T16:41:10.280 回答
3

为将来的搜索者的利益而发布...

如果启用的userInteractionEnabled属性UIImageView不起作用,另一件要查看的是 UIButton 的视图是否在其父视图的框架之外。

当对象的视图超出其父视图的框架时,它会出现在用户面前,但无法接收触摸事件。

于 2012-07-01T13:08:47.787 回答