0

我的UIScrollView. 它是可见的,但我无法滚动它。

CGRect frame = CGRectMake(20, 90,280,1000);
scroll1=[[UIScrollView alloc]initWithFrame:frame];
scroll1.contentSize = CGSizeMake(280,1000);
scroll1.backgroundColor=[UIColor grayColor];

//scroll1.delegate=scroll1;
[scroll1 setUserInteractionEnabled:TRUE];
[scroll1 setPagingEnabled:TRUE];
[scroll1 setScrollEnabled:TRUE];
[scroll1 showsVerticalScrollIndicator];

提前致谢。

4

1 回答 1

1

您已将框架设置为与内容相同的宽度和高度。
尝试使用较小的框架,例如 (20, 90, 200, 300)。

于 2010-03-08T04:20:51.947 回答