我的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];
提前致谢。
答案 0 :(得分:1)
您已将框架设置为与内容相同的宽度和高度 尝试使用较小的框架,如(20,90,200,300)。