2

I want to dismiss alert message when tap out side the alertController in swift language. enter image description here

Thank's advance

Nirav D
  • 71,513
  • 12
  • 161
  • 183
Guru
  • 29
  • 1
  • 6

1 Answers1

1

You need to add the tap gesture in your view in the viewDidLoad like this way

let tapGesture:UITapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(self.viewTapped(_:)))
self.view.addGestureRecognizer(tapGesture)

Now add this viewTapped in your ViewController

func viewTapped(sender: UITapGestureRecognizer){
    self.dismissViewControllerAnimated(true, completion: nil)
}
Nirav D
  • 71,513
  • 12
  • 161
  • 183
  • 1
    Hi Nirav, i need to touch out off promptcode mesage box only then screen goto add money page. – Guru Jul 14 '16 at 17:10