I'm using the method monospacedSystemFontOfSize:weight: of UIFont to get a system specific monospaced font, and according to SDK, it's available in iOS 12.0+:
https://developer.apple.com/documentation/uikit/uifont/3042484-monospacedsystemfont
however, I got a crash when running the app on iOS 12:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[UIFont monospacedSystemFontOfSize:weight:]: unrecognized selector sent to class 0x11a9547b0'
Did I miss something?
Thanks!