2015-06-29 159 views
0
- (void)viewWillAppear:(BOOL)animated{ 
    [super viewWillAppear:animated]; 
    CGFloat w = self.contentScrollView.bounds.size.width; 
    CGFloat contentoffSetx = self.childViewControllers.count * w; 
    self.contentScrollView.contentSize = CGSizeMake(contentoffSetx, 0); 
} 

我在self.contentScrollView上有幾個UIViews。但我無法將self.contentScrollView滾動到self.childViewControllers.lastObject.viewUIScrollView不滾動到最後?

self.contentScrollView.contentSize不夠大?

+0

這裏沒有足夠的信息來幫助我們。害羞可能有多種原因,您的滾動視圖不會滾動到底部。偏移量,超出範圍的內容,佈局問題,是否以編程方式或通過界面生成器等創建的? –

回答

0
- (void)viewWillAppear:(BOOL)animated{ 
    [super viewWillAppear:animated]; 
    CGFloat w = [UIScreen mainScreen].bounds.size.width; 

    CGFloat contentoffSetx = self.childViewControllers.count * w; 

    self.contentScrollView.contentSize = CGSizeMake(contentoffSetx, 0); 
}