UUID comparability

UUID got comparable conformance in iOS 17, can I implement my conformance on it in a way so my implementation is used on versions before 17 and system implementation on later versions?

Interestingly, my project's deployment target is set to iOS15 and I am getting a warning about < ... Not an error??!! (it crashes the app running on iOS 15).

1 Like

Hi @tera, just wondering if you figured out how to do this?

Other than wrapping UUID in a struct of your own and making that struct comparable – no.