Popover dismiss click outside iOS swift

Problem: 

I want to dismiss the view while tap on outside of the view after popover presented.How can i achieve that?

Solution:

    func popoverPresentationControllerShouldDismissPopover(_ popoverPresentationController: UIPopoverPresentationController) -> Bool {


        return true

    }


Add the above function in your viewcontroller with popover delegate.

Comments

Popular posts from this blog

store cgpoint in userdefaults iOS swift

libc++abi: terminating due to uncaught exception of type NSException iOS swift