-
Notifications
You must be signed in to change notification settings - Fork 516
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AVMetadataObjectType enumeration fails on iOS 17 #18833
Comments
This comes from here:
and then: xamarin-macios/src/AVFoundation/AVMetadataObject.cs Lines 45 to 57 in ffdbbbb
We should probably change the latter to not throw an exception if any elements in the array can't be converted to an enum value. The main problem is that this may break existing apps when the OS upgrades, if the code can't cope correctly with new elements in the array coming from the OS. |
…Flags] enums. We have a few different implementations of how to compute a set or array of NSString constants from an enum value, and also computing an enum value from a set or array of NSString constants. So add support to the generator for generating a ToArray and a ToFlags method for these conversions, and remove all the manual code. This has a few advantages: * The generated code is automatically updated with new enum fields (not all previous implementations were). * Reduces code duplication. * Reduces manual code. Additionally, when computing between a group of constants and the corresponding flags, we have to handle any missing constants or flags gracefully, otherwise the code won’t be forward compatible. Example (from bug xamarin#18833): * App developer writes code to fetch the AVCaptureMetadataOutput.AvailableMetadataObjectTypes property, which is an enum value of flags. * App developer ships their app in the app store. * Apple releases a new iOS update, adding new values and constants to the enum. * The native [AVCaptureMetadataOutput availableMetadataObjectTypes] method returns these new constants. * This means that if the AVCaptureMetadataOutput.AvailableMetadataObjectTypes property throws an exception if encountering unknown constants, our API wouldn’t be forward compatible. * The correct solution here is that AVCaptureMetadataOutput.AvailableMetadataObjectTypes must ignore any constants it doesn’t know about. Fixes xamarin#18833.
…Flags] enums. (#18925) We have a few different implementations of how to compute a set or array of NSString constants from an enum value, and also computing an enum value from a set or array of NSString constants. So add support to the generator for generating a ToArray and a ToFlags method for these conversions, and remove all the manual code. This has a few advantages: * The generated code is automatically updated with new enum fields (not all previous implementations were). * Reduces code duplication. * Reduces manual code. Additionally, when computing between a group of constants and the corresponding flags, we have to handle any missing constants or flags gracefully, otherwise the code won’t be forward compatible. Example (from bug #18833): * App developer writes code to fetch the AVCaptureMetadataOutput.AvailableMetadataObjectTypes property, which is an enum value of flags. * App developer ships their app in the app store. * Apple releases a new iOS update, adding new values and constants to the enum. * The native [AVCaptureMetadataOutput availableMetadataObjectTypes] method returns these new constants. * This means that if the AVCaptureMetadataOutput.AvailableMetadataObjectTypes property throws an exception if encountering unknown constants, our API wouldn’t be forward compatible. * The correct solution here is that AVCaptureMetadataOutput.AvailableMetadataObjectTypes must ignore any constants it doesn’t know about. Fixes #18833.
I'm still having this problem ( |
Steps to Reproduce
Expected Behavior
App should not crash
Actual Behavior
App crashes with
NotSupportedException humanFullBody has no associated enum value on this platform
due to a new value Apple added toAVMetadataObjectType
calledhumanFullBody
which isn't bound.Environment
Version information
Build Logs
Example Project (If Possible)
The text was updated successfully, but these errors were encountered: