Я следовал некоторым правилам, чтобы поделиться изображением + текстом, однако текст не отображается
@ IBAction fun c actionShare (_ sender: Any) {
let bounds = UIScreen.main.bounds
UIGraphicsBeginImageContextWithOptions(bounds.size, true,0.0)
self.view.drawHierarchy(in: bounds, afterScreenUpdates: false)
let img = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
let items = [news.news_description?.withoutHtmlTags]
let ac = UIActivityViewController(activityItems: [img!,items], applicationActivities: nil)
ac.popoverPresentationController?.sourceView = self.view
ac.excludedActivityTypes = [.airDrop]
self.present(ac, animated: true, completion: nil)
}