Will SharePlay be added later? Will there be another shareplay profile we can download with an upcoming beta?
I'm able to see there is an ability to send or receive an invite but when it's initiated nothing happens.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I'm on macOS Monterey beta 8, Xcode 13.0. When creating a brand new iOS project, then checking 'Mac' to add catalyst app, I'm not able to choose macOS 12.0. How do I make Mac Catalyst app for macOS 12.0 as the minimum? I'm using macOS Monterey new API's and they are not available when I select macOS 11.3.
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?
Topic:
App & System Services
SubTopic:
General
Tags:
wwdc21-10183
wwdc21-10184
wwdc21-10187
wwdc21-10225
Apple please help. The iOS/iPadOS 15 RC disables shareplay. MacOS Beta 6 was never able to run shareplay. Downloading a SharePlay profile has been removed from developer.apple.com. Please instruct what to do.
Hi, a user of our app is getting this error when creating a CKShare. In our tests we are having no issues with syncing with iCloud or creating a CKShare so we are unable to reproduce... Please anyone have any idea what this error is and, how to fix it or at least how to troubleshoot it?
Hi! In the WWDC keynote for object capture, at 17:38, they drag and edit the bounds of the object. Please can someone guide me how to do this or how to get started? Is there any kind of sample code anywhere for editing bounds?
https://developer.apple.com/videos/play/wwdc2021/10076/
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.
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)
}
}