1

我目前正在 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() 结束时调用。它就像一个魅力,但我仍然想知道这是否是一个“安全”的解决方案?如果是这样,我想我的解决方案可以帮助其他相关问题。

希望有人让我知道。

4

1 回答 1

2

我用一个有效的答案编辑了最初的帖子。在没有得到你们任何确认的情况下,我想我的解决方案是最好的解决方案,但如果有什么不同的可以做,或者这个解决方案在 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() 结束时调用。它就像一个魅力,但我仍然想知道这是否是一个“安全”的解决方案?如果是这样,我想我的解决方案可以帮助其他相关问题。

于 2016-10-25T16:51:50.473 回答