我继承QLPreviewController
以使用我自己的处理程序设置我自己的右键
它在iOS 5.1上工作正常,我甚至设法让它在切换到Home后保留按钮而不是回到我的应用程序。
[self.navigationItem setRightBarButtonItem:[[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemEdit target:self action:@selector(openWithPressed:)]];
在iOS 4.3上,QuickLook显示UINavigationItem
中的标准按钮(右按钮是“打开方式”按钮,而不是我的自定义“编辑”按钮,具有自定义逻辑)。以这种方式设置按钮是否存在一些已知问题?我应该以其他方式做到吗?