ios 电子邮件|Slack - Firebase动态链接缩短URL不起作用

6tdlim6h  于 2022-12-01  发布在  iOS
关注(0)|答案(1)|浏览(102)

Firebase shortenURL在除了iMessage和Slack之外的每个应用程序中都按预期工作。
共享屏幕被Slack卡住。handleUniversalLink解码返回404错误,并显示iMessage。
请注意,shortenURL的复制和粘贴工作正常。

let activityVC = UIActivityViewController(activityItems: [shortenURL], applicationActivities: nil)
activityVC.popoverPresentationController?.sourceView = self.view
self.present(activityVC, animated: true)

任何帮助都是非常感谢的。

6tqwzwtp

6tqwzwtp1#

解决方案是在shortenURL中包含一些前缀文本,并将它们一起共享。

let promoText = "You have been invited to this. "
let activityVC = UIActivityViewController(activityItems: [promoText + shortenURL.absoluteString], applicationActivities: nil)
activityVC.popoverPresentationController?.sourceView = self.view
self.present(activityVC, animated: true)

相关问题