2013-02-03 43 views
0

第一次按下標籤欄項目時,滾動器完美地工作。在標籤欄項目之間切換後,滾動條只能隨着原本設置的寬度和高度向下移動。在標籤欄項目之間切換後,UIScroller無法向上滾動

這是我的代碼

-(void)viewDidAppear:(BOOL)animated{ 
[scroller2 setScrollEnabled:YES]; 
[scroller2 setContentSize:CGSizeMake(320, 2000)]; 



[super viewDidAppear:animated]; 

我將高度讚賞建議。

回答

0

我有同樣的問題...試試這個:

- (void) viewWillDisappear:(BOOL)animated { 

    [self.scrollView setContentOffset:CGPointMake(self.scrollView.contentOffset.x, 0) 
          animated:NO]; 

} 
相關問題