Friday, 24 February 2012

Runtime Content side of UIScrollView + iphone

CGRect contentSize = CGRectZero;
    for (UIView *subview in scrollView.subviews) {
        contentSize = CGRectUnion(contentSize, subview.frame);
    }
    scrollView.contentSize = contentSize.size;

No comments:

Post a Comment