Overriding layoutSubviews when rotating UIView

情到浓时终转凉″ 提交于 2019-12-10 09:44:21

问题


When rotating a scroll view inside a UIView, the scroll view doesnt position correctly using its default autoresizing behaviour.

Thus, when rotation occurs, in willRotateToInterfaceOrientation i call [self.view setNeedsLayout]; and my layoutSubviews method is as follows:

- (void)layoutSubviews {
    NSLog(@"here in layoutSubviews");
}

But putting a breakpoint on the method, and it never seems to enter the method.

Do i need to do something else to get it to work?

Thanks.


回答1:


willRotateToInterfaceOrientation is being called before the orientation is changed, hence your UIView will still have the old size. Try using didRotateFromInterfaceOrientation instead.

Also, for added effect, I would hide the scrollView ( maybe with inside an UIAnimation block) in willRotateToInterfaceOrientation, resize it and then show it in didRotateFromInterfaceOrientation (again, maybe inside an animation block).

Here is a snippet from one of my apps:

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3f];
self.myScroll.hidden = YES;
[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
[UIView commitAnimations];
}

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3f];
self.myScroll.hidden = NO;
[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
[UIView commitAnimations];
}

You can even do fancy stuff by checking the new orientation using UIInterfaceOrientationIsPortrait(orientation) or UIInterfaceOrientationIsLandscape(orientation).




回答2:


Calling [someScrollView setNeedsLayout] may not actually do anything if the view hasn't been resized or moved. As you say, that method is never called using the default autoresizing behavior, because the default behavior is to not resize at all. You most likely need to set someScrollView.autoresizingMask. When the interface rotates, the view will resize itself, and layoutSubviews will get called.




回答3:


Actually, you probably want to override the view controller willAnimateRotationToInterfaceOrientation:duration: method (cut from an example of mine):

-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation 
                                        duration:(NSTimeInterval)duration {
    if (UIInterfaceOrientationIsPortrait(toInterfaceOrientation)) {
        boardView.frame = CGRectMake(0, 0, 320, 320);
        buttonsView.frame = CGRectMake(0, 320, 320, 140);
    } else {
        boardView.frame = CGRectMake(0, 0, 300, 300);
        buttonsView.frame = CGRectMake(300, 0, 180, 300);        
    }

}




回答4:


The method doesn't get called because a ViewController doesn't have a layoutSubviews method.

When you call [self.view setNeedsLayout]; it will just call the layoutSubviews method of the view of the view controller: [self.view layoutSubviews].

You will need to subclass the UIScrollview to make this work.




回答5:


You should override willAnimate... and set the new frame of your view. Layoutsubviews should be called automatically during rotation.



来源:https://stackoverflow.com/questions/4051465/overriding-layoutsubviews-when-rotating-uiview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!