I'm trying to display a share sheet and am using examples from the Internet but am getting the following warning:
"'windows' was deprecated in iOS 15.0: Use UIWindowScene.windows on a relevant window scene instead"
Here's the code I'm trying to use:
func shareButton()
{
let url = URL(string: introText)
let av = UIActivityViewController(activityItems: [url!], applicationActivities: nil)
UIApplication.shared.windows.first?.rootViewController?.present(av, animated: true, completion: nil)
}
Thanks, Dan Uff