I would like pinView resize when self.view becomes resized. To accomplish this:
[pinView setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];
Early attempts that did NOT work:
[self.view setAutoresizesSubviews:YES];
[self.view setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];
You will need to apply the autoresize mask to the subview you want resized.
No comments:
Post a Comment