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
-
—
OOPer
-
—
CPSoftware
-
—
OOPer
Add a Commentam using examples from the Internet > You should better visit the author of the code.
I did. He said that he didn’t know either.
Better avoid using such a code that no one is responsible for.