UIFontPickerViewController stopped working in Simulator?

Did UIFontPickerViewController stop working in the Simulator with Xcode 12 beta 3? I'm compiling for iOS 14/Swift, and when presenting UIFontPickerViewController, after a long pause, a blank view is displayed. Works using the iOS 13.5 Simulator, so it's only an issue with the iOS 14 Simulator. And Works OK on iOS 13 devices. I don't have an iOS 14 device to test.
Answered by travis78701 in 628007022
Working again in Xcode 12 beta 5
It is not marked as deprecated.
Did it work with beta 2 ? If so, that's probably a bug. You should then file a bug report.

Could you show the code ?
Yes, it has worked in all previous versions of Xcode. I have filed a bug report. It's as simple as calling

Code Block
        let fontPicker = UIFontPickerViewController()
        present(fontPicker, animated: true)

I just tested on Xcode 12 beta 3, iOS 14 simulator (iPhone 11 Pro).
It works correctly, displaying the Choose Font panel.
If you did not do it yet, you should restart the Mac and test again.
Maybe some components were not fully installed.
Accepted Answer
Working again in Xcode 12 beta 5
UIFontPickerViewController stopped working in Simulator?
 
 
Q