在我的项目中,我在底部滚动,在顶部滚动表格。在滚动视图中,我添加了 10 个按钮。对于每个按钮,我都有平移手势以在屏幕上移动。当按钮与表格相交时,将在表格视图中添加一张图片。
但是平底锅正在滚动中工作。如何使它在视图中移动
我的编码是:
downscroll=[[UIScrollView alloc]initWithFrame:CGRectMake(24, 635, 980, 100)];
downscroll.backgroundColor=[UIColor redColor];
downscroll.contentSize=CGSizeMake(990, 100);
[self.view addSubview:downscroll];
for(int i=1;i<=8;i++)
{
b1=[UIButton buttonWithType:UIButtonTypeCustom];
b1.frame=CGRectMake(30+px, 0, 80, 80);
[b1 setImage:[UIImage imageNamed: [NSString stringWithFormat:@"Icon%i.png",i]] forState:UIControlStateNormal];
[downscroll addSubview:b1];
// [self.view sendSubviewToBack:b1];
// [self.view bringSubviewToFront:b1];
[groupbutton addObject:b1];
panRecognizer3= [[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(move:)];
[b1 setUserInteractionEnabled:YES];
b1.exclusiveTouch=YES;
img.tag=i;
[b1 addGestureRecognizer:panRecognizer3];
px=px+120;
}
当我在没有滚动滚动视图的情况下直接添加按钮时,它工作正常。但我需要添加按钮滚动视图,请帮助提供正确的代码。提前致谢。