Hi,
Until Xcode 12 beta 4, everything was fine but since beta 5 I don't see _XCAppClipURL having any effect. The userActivity delegate isn't called. Is anyone facing this?
Until Xcode 12 beta 4, everything was fine but since beta 5 I don't see _XCAppClipURL having any effect. The userActivity delegate isn't called. Is anyone facing this?
I found the error for me. I just used:
But I have to use:
for the first launch.
Maybe that helps you too :)
Code Block - (void)scene:(UIScene *)scene continueUserActivity:(NSUserActivity *)userActivity
But I have to use:
Code Block - (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions
for the first launch.
Maybe that helps you too :)