I'll just post this into the ether while I spend the rest of my day trying to figure it out. Maybe someone out there has some insight?
On iOS 26.3.1 (not any major OS prior) if I add a UITableView to the UIWindow of a UIWindowScene of a UIScreen which is an external screen (😮‍💨) UIKit crashes with a fatal error about a missing user idiom.. Woot. No crash if I add a plain UIView. iOS 26 bug? What to do?
#UIKit #Xcode #iOSDev
@2ndNatureDev override traitCollection and add the missing trait if super.traitCollection doesn't have it. (This will most likely produce a warning at runtime that overriding it is not supported, you can ignore that)
@Cyberbeni Thanks, will give it a go!