Post not yet marked as solved
The shareFile() function is where the warning occurs.
let ac = UIActivityViewController(activityItems: [fileURL], applicationActivities: nil)
present(ac, animated: true, completion: nil)
Scouring the internet for other code resources for UIActivityViewController all return the same warning.
this is on an iPhoneXR 15.1 xcode 13.2.1
I'm having the same problem with a map download link from usgs.
The download links work in safari on osx(11.4) and (iOS15.02) IPad/Iphone.
When using WKWebView with Xcode 12.5/13. on the iPhone I am getting the error
XX XXXX V1.1[59585:3775699] [Process] 0x15684b018 - [pageProxyID=5, webPageID=6, PID=59586] WebPageProxy::didFailProvisionalLoadForFrame: frameID = 3, domain = WebKitErrorDomain, code = 102
The download links act dead, there is no response when touched. Other links are working.
If the link is long touched and get a click feedback, then the page shows the copy/lookup selection at the top of web view page
completely seperate from the link touch like webView doesn't know how to respond to the link.
edit: Just tested the IPad and it has the same results as the iPhone.
Post not yet marked as solved
Old topic but maybe will help someone."require_action" has been changed to "__Require_Action"https://stackoverflow.com/questions/46221364/xcode-9-throws-errors-involving-require
Excellent! Since these are Forest Service maps downloaded, named as such, I was contemplating how to correct.
Thanks, good explanation.
Post not yet marked as solved
I have been struggling with this for some time, filed a bug report with Apple and they claimed I didn't have permission. No reference to what permissions.Towards the bottom of the log file from the bug report was the following text."You don’t have permission to save the file “60ACC3A5-E7E2-4330-869B-15447826C019” in the folder “CoreSimulator”." UserInfo={NSFilePath=/Users/terryburdett/Library/Logs/CoreSimulator/60ACC3A5-E7E2-4330-869B-15447826C019, NSUnderlyingError=0x7fda1871c8b0 {Error Domain=NSPOSIXErrorDomain Code=13 "Permission denied"}}}}}Follow the path to Logs and getinfo on Logs folder. If your name isn't in the sharing and permissions list, unlock the folder and add it. Change permissions to read/write. Next time you run Xcode it should create an CoreSimulator folder in the Logs folder and compile without bug. In my case the Logs folder was the only one in the path that I didn't have permission for reading/writing. So check all folders in the path.So far working good.