Post

Replies

Boosts

Views

Activity

MacOS Monterey beta 7, SharePlay/GroupActivities is not available when building for Mac Catalyst... was available in betas 2-5.
Hi Apple, please help! In MacOS Monterey betas 2-5, I was able to run GroupActivities on my Mac Catalyst app. When running my app with GroupActivities on MacOS Monterey beta 7, I get an error: "GroupActivities is not available when building for Mac Catalyst. Consider using #if !targetEnvironment(macCatalyst) to conditionally import this framework when building for iOS." No such module 'GroupActivities' Is SharePlay going to be available for Mac Catalyst in an upcoming beta?
1
0
933
Sep ’21
After adding sandbox entitlement to exec file, can't run exec through app
Before adding the sandbox entitlement to the exec file, the app ran perfectly. After adding the entitlement properties below, I get an error: my.sh: line 2: 41382 Killed: 9 $1 $2 "$3" $4 "$5" Entitlement properties added: keycom.apple.security.app-sandbox/key true/ keycom.apple.security.inherit/key true/ I'm signing with my Apple Development identity. I tried also by signing with my 3rd Party Mac Developer Application.  Lastly, I am running this exec through a plugin, I don't know if that could be the cause of the error. Please help.
1
0
824
Apr ’21
Xcode preview docx file with WKWebview
Running on macOS Big Sur (11.0.1), the code below perfectly loads and displays images, pdfs, html in a WKWebview but not docx or other files. I would like to preview files selected in my Mac app. I get this error: WebPageProxy::didFailProvisionalLoadForFrame: frameID = 3, domain = WebKitErrorDomain, code = 102 Please can someone help? Thank you. import Cocoa import WebKit class ViewController: NSViewController {@IBOutlet weak var webView: WKWebView! let url = "https://filesamples.com/samples/document/docx/sample3.docx"override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. let request = URLRequest(url: URL(string: url)!) webView.load(request) } }
1
0
2.4k
Nov ’20