共享按钮未在iMessage上共享

问题描述

我正在尝试实现一个共享按钮,该按钮允许通过短信共享表格视图中的文章,但是由于某些原因,当我在模拟器中运行该按钮时,它不会复制链接,也不会在iPhone 8上显示或8加。我该如何解决

https://github.com/lexypaul13/Covid-News/blob/master/Covid%20News/LatestNewsViewController.swift

@IBAction func shareButton(_ sender: UIButton) {
        
        let buttonPosition = sender.convert(CGPoint.zero,to: self.table_view)
        if let indexPath = self.table_view.indexPathForRow(at:buttonPosition) {
            let newRelease = articles?[indexPath.row].urlWebsite
            let activityVC = UIActivityViewController(activityItems:[newRelease ?? 0],applicationActivities: nil)
            activityVC.popoverPresentationController?.sourceView = self.view
            self.present(activityVC,animated: true,completion: nil)

        }

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)