2010-03-08 71 views
0

我的UIScrollView有問題。這是可見的,但我不能滾動它。滾動ScrollView控件時出現問題?

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]; 

在此先感謝。

回答

1

您已將框架設置爲與內容相同的寬度和高度。
嘗試像(20,90,200,300)這樣的較小的框架。

+0

謝謝Dyingcactus .. 我提交問題後,我得到了答案... 我實現它只有這樣... 再次感謝 – abhiTouchmagic 2010-03-09 05:56:46