Tag: Popovers

How to Add Custom Popovers to Your iOS App

There are currently 3 ways to present popovers. One is with UIPopoverPresentationController , but that only works on iPad. You could also present a UIMenu , but that’s only for iOS 14+. Finally, you could use UIAlertController. This is probably the easiest to implement...