1

我的 QLPreviewController 的设置左栏按钮有问题。

这是我的代码

    -(void)openPdfFile{


    QLPreviewController *previewer = [[QLPreviewController alloc] init];

    previewer.dataSource=self;
    previewer.delegate=self;

    UINavigationController *navController=[[UINavigationController alloc]initWithRootViewController:previewer];

    navController.navigationItem.leftBarButtonItem=[[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(goback)];

    [navController setModalPresentationStyle:UIModalPresentationFormSheet];

    [[[[UIApplication sharedApplication]keyWindow]rootViewController]presentModalViewController:navController animated:TRUE];

}

它在 ios 6.0 及更高版本中运行良好,但在 6.0 以下出现问题。它不显示

4

0 回答 0