In my iOS app I have about 60 present(_:animate:complition)
calls from legacy code.
iOS 13 just changed the default presentationStyle
to Automatic
which actually means .formSheet
style.
Is there a quick way to change the default back to .fullScreen
on all the app? maybe like in the infoPlist or some global protocol like UIAppearance
Protocol? If there's no way i need to set the presentationStyle
manually in 60 places...