我有看法。制作自定义视图并添加视图。
[self.view addSubview:self.customView];
然后我在customView上添加了scrollView:
[self.customView addSubview: self.scrollView];
然后我在scrollView上添加了一些标签:
[self.scrollView addSubview: lbl];
[self.scrollView addSubview: lbl1];
[self.scrollView addSubview: lbl2];
当我滚动时,我在标签的VIEW边框上看到了。该怎么办?谢谢帮助!