Post

Replies

Boosts

Views

Activity

Reply to WKWebView & Third party cookies
Were you able to figure this out? I found two related threads;https://forums.developer.apple.com/thread/68694https://bugs.webkit.org/show_bug.cgi?id=140205and a post https://medium.com/@flexaddicted/how-to-set-wkwebview-cookie-accept-policy-d8a2d3b77420
Apr ’20
Reply to How to force WKWebView to show mobile version of the site on iPad?
Assuming the website you are loading uses User-Agent to change content/layout/presentation the following will work. let config = WKWebViewConfiguration() if #available(iOS 13.0, *) { /** In iOS 13 and above WKWebViews in iPad has the ability to render desktop versions of web pages. One of the properties they change to support this is the User-Agent. Therefore forcing the WKWebView to load the mobile version. */ let pref = WKWebpagePreferences.init() pref.preferredContentMode = .mobile config.defaultWebpagePreferences = pref } _webView = WKWebView.init(frame: CGRect.zero, configuration: config)
Jun ’21
Reply to Run Xcode 13.x on macOS Ventura?
I have tried the most common suggestion of running it from command line but no luck. Command: open /Users/username/Downloads/Xcode.app/Contents/MacOS/Xcode Error: Xcode[3762:21719] [MT] IDEPackageInstallerHelper: Generic message for error: Error Domain=PKInstallErrorDomain Code=201 "An error occurred establishing a connection to the installation service." UserInfo={NSLocalizedDescription=An error occurred establishing a connection to the installation service.} I'm unable to download and install command line tools separately. It complains about the macOS version. I share the same sentiment as @zumacinsmity. On a regular day I support versions of the apps that are developed using older versions of Xcode. At least one major version older. In my case I was trying to install Xcode 13.2.1
Jan ’23