The release notes of Xcode 12 beta 1 states
The problem is, in Xcode 11 the system did already call performFetchWithCompletionHandler, which I think is a bug and was also filed in FB7625283.
If I test this on a real device, the system calls didReceiveRemoteNotification, which is the right method, at least from my understanding.
Now to my question, should the system really call performFetchWithCompletionHandler or are the release notes wrong and the issue isn't fixed?
When simulating a push notification in Simulator with the content-available key set, the system now calls application(:performFetchWithCompletionHandler:) instead of application(:didReceiveRemoteNotification:fetchCompletionHandler:). (60426170) (FB7625283)
The problem is, in Xcode 11 the system did already call performFetchWithCompletionHandler, which I think is a bug and was also filed in FB7625283.
If I test this on a real device, the system calls didReceiveRemoteNotification, which is the right method, at least from my understanding.
Now to my question, should the system really call performFetchWithCompletionHandler or are the release notes wrong and the issue isn't fixed?