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

iOS中视频播放 自适应横竖屏显示

2018年02月14日 ⁄ 综合 ⁄ 共 443字 ⁄ 字号 评论关闭

自动旋转屏幕

-(BOOL)shouldAutorotate{

    return YES;
}
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
    return YES;

}

重写父类方法适应屏幕

-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
    [super willAnimateRotationToInterfaceOrientation:toInterfaceOrientation duration:duration];
    [self configureViewForOrientation:toInterfaceOrientation];
}

抱歉!评论已关闭.