如何在另一个视图上方叠加视图?

时间:2013-02-27 07:00:37

标签: iphone ios uiview

正如jjv360在我的另一个问题中所建议的那样,为scrollView设置自定义分页宽度的一种方法是使scrollView成为分页的大小,然后在其上覆盖透明的UIView并执行[overlayView addGestureRecognizer:scrollView.panGestureRecognizer]用于触摸事件。

这听起来是个好主意,这是我的简单问题:

仅覆盖[view addsubview OLvier]?覆盖方法的意见是什么?

2 个答案:

答案 0 :(得分:0)

是的...使用CGRectMake设置视图框架并使用

覆盖

[scrollview addsubview:view1]

答案 1 :(得分:0)

UIView *yourView = [UIView alloc]init];
yourView.frame = CGRectMake(x,y,width,height)//whatever values work for you
[self.view addSubview: yourView];