0

我可以显示UIScrollView指示器,但我无法向下滚动以查看隐藏的内容。我在我的viewDidLoad

self.scroller.contentSize = CGSizeMake(320, 600);

self.scroller.frame = CGRectMake(320,480,320,480);

有人可以帮帮我吗?

4

1 回答 1

0
  // define the area that is initially visible
  scrollViewCustom.frame = CGRectMake(0, 5, 354, 500);

  // then define how much a user can scroll it
 [scrollViewCustom setContentSize:CGSizeMake(354, 960)];

另外,清除滚动视图的背景颜色以显示文本。

 scrollViewCustom.backgroundColor = [UIColor clearColor];
于 2012-07-04T05:07:04.963 回答