我正在尝试从tableViewCell分享一些东西,但每当我按下分享时,它会显示activityViewController,但不会给我任何选项来分享它。我也尝试在我的iPhone上运行它,并出现同样的问题。
override func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
let shareActions = UITableViewRowAction(style: .normal, title: "Share") { (_ rowAction: UITableViewRowAction, _ indexPath: IndexPath) in
let sharingItem = self.eventsArray[indexPath.row]
let activityViewController = UIActivityViewController(activityItems: [sharingItem], applicationActivities: nil)
self.present(activityViewController, animated: true, completion: nil)
}
图片 - This is what happens when I try to share it
再次,我尝试在手机上运行它,同样的事情发生了。当我点击更多时,它也没有显示任何应用程序选项。知道这里有什么问题吗?提前谢谢!