0

我正在开发一个应用程序,该应用程序在单击某个缩略图时必须播放视频,我正在显示列表。我只希望视频在横向和纵向模式下旋转,但其他屏幕必须在纵向模式下我们如何做到这一点。

4

1 回答 1

0

在视图中将出现

UIViewController *vc = [[UIViewController alloc] init];
    [self presentViewController:vc animated:NO completion:NULL];
    [self dismissViewControllerAnimated:NO completion:NULL];

这将触发视图的重绘并因此调用以下函数,前提是您已经实现了这些

- (BOOL)shouldAutorotate{
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations{
    return UIInterfaceOrientationMaskPortrait;
}
于 2013-06-17T10:03:15.210 回答