Posts by felipeat • 21 points
1 post
-
2
votes1
answer43
viewsA: Set height for Uiscrollview
Try: CGRect contentRect = CGRectZero; for (UIView *view in self.scrollView.subviews) { contentRect = CGRectUnion(contentRect, view.frame); } self.scrollView.contentSize = contentRect.size;…