You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to target iOS 16 and I get deprecation warnings. "modifyRecordsCompletionBlock' was deprecated in iOS 15.0: Use modifyRecordsResultBlock instead"
However with modifyRecordsCompletionBlock I'd get an array of the successfully modified records as input for the block which I'd in turn use for updating my local DB, whereas the input for modifyRecordsResultBlock is Result<Void, Error>.
The text was updated successfully, but these errors were encountered:
edit: here's a solution: https://developer.apple.com/forums/thread/697571 I'll reference this if the deprecation becomes a problem later. There are also remaining shortcomings. So I'll wait for improvement.
I want to target iOS 16 and I get deprecation warnings. "modifyRecordsCompletionBlock' was deprecated in iOS 15.0: Use modifyRecordsResultBlock instead"
However with modifyRecordsCompletionBlock I'd get an array of the successfully modified records as input for the block which I'd in turn use for updating my local DB, whereas the input for modifyRecordsResultBlock is Result<Void, Error>.
The text was updated successfully, but these errors were encountered: