我可以显示UIScrollView
指示器,但我无法向下滚动以查看隐藏的内容。我在我的viewDidLoad
:
self.scroller.contentSize = CGSizeMake(320, 600);
self.scroller.frame = CGRectMake(320,480,320,480);
有人可以帮帮我吗?
我可以显示UIScrollView
指示器,但我无法向下滚动以查看隐藏的内容。我在我的viewDidLoad
:
self.scroller.contentSize = CGSizeMake(320, 600);
self.scroller.frame = CGRectMake(320,480,320,480);
有人可以帮帮我吗?
// 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];