UIVIewcontroller に QLpreviewcontroller を表示しようとしています。
-(void)showPreview{ if(!_previewController){ _previewController = [[QLPreviewController alloc] init]; _previewController.dataSource = 自己; _previewController.delegate = 自己; } // ここには常に 1 つの項目があります _previewController.currentPreviewItemIndex = 0; [_previewController setModalTransitionStyle:UIModalTransitionStyleCoverVertical]; [self presentViewController:_previewController アニメーション:YES 完了:nil]; }
previecontroller は表示されますが、トランジションはアニメーション化されません。アニメーションなしで表示されます。