我目前正在 swift 3 中开发我的第一个共享扩展。这实际上是一个非常简单的扩展,它直接从 Safari 共享文本或 url(通过从网页内容中选择文本或 url)
我想在 ShareViewController (SLComposeServiceViewController) 的 didSelectPost() 中显示 UIAlertController ,但这实际上不起作用。在用户点击发布按钮后,警报只会显示几纳秒。仅供参考,这是我用于此的代码:
func displayUIAlertController(title: String, message: String) {
let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil)
self.present(alert, animated: true, completion: nil)
}
然后在 didSelectPost()
displayUIAlertController(title: "title", message: "test")
有没有办法从共享扩展中显示 UIAlertController ?谢谢。
编辑。我想我明白了,但我现在唯一担心的是确定 Apple 会在他们为应用商店验证我的应用程序时接受它(这将是我的第一个应用程序,我什至没有付费开发者帐户然而)
这是我的解决方案:
func displayUIAlertController(title: String, message: String) {
let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: { (action: UIAlertAction!) -> () in
self.extensionContext!.completeRequest(returningItems: [], completionHandler: nil)
}))
self.present(alert, animated: true, completion: nil)
}
所以现在 self.extensionContext!.completeRequest() 在用户单击警报按钮后调用,而不是在 didSelectPost() 结束时调用。它就像一个魅力,但我仍然想知道这是否是一个“安全”的解决方案?如果是这样,我想我的解决方案可以帮助其他相关问题。
希望有人让我知道。