Posts

Post marked as solved
20 Replies
0 Views
I resolved the console messages by adding the new watchOS 7 App struct. The WKExtensionDelegate protocol conformance isn't required, but I added it for completeness. Move code from your extension delegate to your new App struct. import SwiftUI @main structMyWatchApp: App {   @WKExtensionDelegateAdaptor(MyWatchAppDelegate.self) var myWatchAppDelegate       @SceneBuilder var body: some Scene {     WindowGroup {       ContentView()     }   } } class myWatchAppDelegate: NSObject, WKExtensionDelegate {   }
Post not yet marked as solved
4 Replies
0 Views
Have the same problem too. Tried the 12.2 beta but no difference. I can run Instruments on a physical device though.
Post not yet marked as solved
6 Replies
0 Views
I'm having the same problem too. Drop doesn't call call performDrop() in the Drop Delegate. Like you I'm using SwiftUI. I'll post back if I figure it out. Are you seeing in the console the message "PBItemCollectionServicer connection disconnected."?