现在的位置: 首页 > 综合 > 正文

设备翻转时viewController调用的方法

2018年05月12日 ⁄ 综合 ⁄ 共 764字 ⁄ 字号 评论关闭

要翻转的时候,
首先响应的方法:
-(BOOL)shouldAutorotateToInterf

aceOrientation:(UIInterfaceOrientation)interfaceOrientation。
return YES则支持翻转,NO则不支持。

紧接着
-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientationduration:(NSTimeInterval)duration
被调用。这个方法是发生在翻转开始之前。一般用来禁用某些控件或者停止某些正在进行的活动,比如停止视频播放。

再来是
-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientationduration:(NSTimeInterval)duration 。
这个方法发生在翻转的过程中,一般用来定制翻转后各个控件的位置、大小等。可以用另外两个方法来代替:willAnimateFirstHalfOfRotationToInterfaceOrientation:duration:  和 willAnimateSecondHalfOfRotationFromInterfaceOrientation:duration:

最后调用的是
-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation 方法。
这个方法发生在整个翻转完成之后。一般用来重新启用某些控件或者继续翻转之前被暂停的活动,比如继续视频播放。

抱歉!评论已关闭.