So I have a UIView called footerView which is added to a UIScrollView. I've initialize it as follows:
UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.scrollView_.frameWidth, kFooterViewHeight)];
[footerView setAutoresizingMask: UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin];
[footerView setBackgroundColor:[UIColor clearColor]];
self.footerView_ = footerView;
[self.scrollView_ setFooterView_:self.footerView_];
[footerView release];
So initially the scrollView.frameWidth is set to 768. But then at later point it is adjusted to 450. After this happens I tried checking self.footerView.frameWidth and it's still at 768. Why is this? I've tried calling setNeedsLayout on footerView, I made sure that auto-resize views is set on the UIScrollView, but nothing happens.
@synthezise scrollView = _scrollView;, then you don't need to write self.scrollView anymore. And can you try a[_scrollView addSubView:_footerView];instead of assigning it to an object? – ott-- Jul 20 '12 at 18:56addSubviewfor any resizing to take place. Where are you doing that? And you probably only wantUIViewAutoresizingFlexibleWidth. – Rob Jul 20 '12 at 18:59self.view.frame.size.height - kFooterViewHeight. Or are you adding it to some container UIView that you added via Interface Builder or something like that. In that case, does that have it'sautoresizingMaskset properly, too? All of the views throughout the view hierarchy (the footer view, its container, the scrollview, etc.) need to have the autoresizingMask set accordingly (either programmatically or through IB, as appropriate). – Rob Jul 20 '12 at 19:03