- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
对于 iPhone/iPad 应用程序,我具有在有人单击 UIBarButtonItem 时共享的功能。
UIActivityViewController * activityVC = [[UIActivityViewController alloc] initWithActivityItems:shareItems applicationActivities:nil];
[self presentViewController:activityVC animated:YES completion:nil];
但是对于 iPad,此代码会出错,因为我需要为 activityVC 设置 sourceView。
所以我需要添加这段代码,但是将它设置到UIBarButtonItem的位置。
activityVC.popoverPresentationController.sourceView = SomeUIBarButtonItem;
但这不起作用,因为 UIBarButtonItem 不是从 UIView 继承的(这对我来说真的很奇怪,我不明白这个逻辑)。
有什么方法可以设置它,使共享弹出窗口指向栏按钮项目吗?
谢谢,
最佳答案
您需要做的就是使用弹出窗口的 barButtonItem 属性。
在 iPad 上支持 ActivityViewController 或 UIAlertController 的正确代码:
popover.barButtonItem = self.navigationItem.rightBarButtonItem;
另一个完全支持 iPad 的示例,使用 UIAlertController(但与 ActivityViewController 的工作方式相同):
UIPopoverPresentationController *popover = alert.popoverPresentationController;
if (popover)
{
popover.barButtonItem = self.navigationItem.rightBarButtonItem;
popover.permittedArrowDirections = UIPopoverArrowDirectionUp;
}
[self presentViewController:alert animated:YES completion:nil];
swift 4.2
if let popover = alert.popoverPresentationController {
popover.barButtonItem = self.navigationItem.rightBarButtonItem
popover.permittedArrowDirections = .up
}
self.present(alert, animated: true, completion: nil)
关于ios - UIActivityViewController 将 sourceView 设置为 UIBarButtonItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34244117/
我尝试下载并编译https://developer.apple.com/library/content/samplecode/SourceView/Introduction/Intro.html 我有
在阅读 Tim Isted 所著的《Beginning Mac Programming》一书时,我试图理解 Apple 网站上的“SourceView”示例。 我想将设备和地点的图像放大一点。 通过更
我需要显示一些与源代码非常相似的东西,但它不应该可以修改它(但我仍然需要绘画注释等功能)。用例更像是 - 您单击某行,会发生一些事情,会显示一些注释等)。 所以我决定尝试使用eclipse应用平台,因
我是 gtk 编程和 d 的新手,并使用来自 gtkd 源的演示进行学习。当我尝试编译下面的代码时[我在 archlinux 上使用 dmd-2.060 和 gtkd-2.0]。 /* Mod
我想要做的是呈现一个弹出窗口,其中注释作为其源 View / anchor 通过使用委托(delegate)函数didSelectannotationView我应该能够实现这一点,但它似乎根本没有运行
我正在为 UIAlertController 设置属性,如下所示: alertController.modalPresentationStyle = .popover alertController.
如何使用 GTK3 在 GtkSourceView 中启用语法高亮显示?我的以下代码无法正常工作。 # HTML view self.scrolledwindow_html = builder.get
我正在寻找从 导航的快捷键代码隐藏 文件(a.cs)到 HTML Source-View 页面(a.aspx)? 我找不到任何直接可行的方法来处理这个问题! 最佳答案 F7 -> 在 .ASPX 和
我有一个 UIAlertController,我试图向它添加一个箭头并将 sourceView 更改为 self.button,以便它不会出现在底部。 这是我到目前为止得到的: let dropdow
对于 iPhone/iPad 应用程序,我具有在有人单击 UIBarButtonItem 时共享的功能。 UIActivityViewController * activityVC = [[UIAct
所以我正在使用 Eclipse,并尝试在独立的 SourceViewer 中启用 Java 错误突出显示。我已经在网上搜索了很多,但似乎没有任何结果。我已经研究过处理注释、标记等......出现的一切
我正在开发一个类似于 WhatsApp 的聊天应用程序。当用户长按消息时,会显示带有选项的弹出窗口。我想调暗背景中的所有内容,除了弹出框和弹出框的 sourceView 之外。像这样: 我尝试了这个,
我有一个包含 4 个段的 UISegmentedControl。其中一些片段会在用户选择时实例化 UIAlertController。 在 UIAlertController 上,您可以设置 popo
我在 View 中使用 sourceViewer,我定义了命令 org.eclipse.ui.edit.findReplace 并为该命令创建一个处理程序以调用 FindReplace 操作。 我还定
我想在用户单击 iPad 中的单元格时显示一个 popoverPresentationController。这是我的代码: override func tableView(tableView: UIT
我正在努力设置正确的绑定(bind),以使 SourceView (OutlineView) 在基于 View 的模式下与 TreeController 一起使用。它在基于单元的模式下可以正常工作。
我正在使用“SourceViewer”创建一个编辑器。下面给出的是我的“@PostConstruct”方法的代码片段。 // viewer is my SourceViewer instance
我有一个正在修改的 JFace SourceViewer,我想捕获用户按下其中的 ENTER 键时的情况,执行一些代码,然后取消进一步执行 ENTER 事件。换句话说,我不想在 SourceViewe
我遇到过大多数人在 iPad 上尝试呈现 UIActivityViewController 时遇到的情况;它崩溃了: Terminating app due to uncaught exception
我正在尝试使用自定义 UIPopoverPresentationController 类显示弹出窗口。但它因错误而崩溃 () should have a non-nil sourceView or b
我是一名优秀的程序员,十分优秀!