.onContinueUserActivity
is never called in the state restoration example app provided by Apple.
Inside of DetailView, this method is called:
// The described activity for this view.
.userActivity(DetailView.productUserActivityType,
isActive: product.id.uuidString == selectedProductID) { userActivity in
describeUserActivity(userActivity)
}
Inside of ContentView (parent of DetailView), this method is NOT called:
.onContinueUserActivity(DetailView.productUserActivityType) { userActivity in
if let product = try? userActivity.typedPayload(Product.self) {
selectedProduct = product.id.uuidString
}
}
I know .onContinueUserActivity
is not being called by placing print statements in the method, and because commenting it out has no effect on the app's restoration.
The "Test State Restoration" strategies listed here do not work.
Just to note that this works on the Mac, so it is just a bug in iOS implementation, I think from iOS 16 onwards.