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.view
。UIScrollView不滾動到最後?
self.contentScrollView.contentSize
不夠大?
這裏沒有足夠的信息來幫助我們。害羞可能有多種原因,您的滾動視圖不會滾動到底部。偏移量,超出範圍的內容,佈局問題,是否以編程方式或通過界面生成器等創建的? –