Так создаю AlertController
let alertController = UIAlertController(title: nil, message: "Title.", preferredStyle: .ActionSheet)
let cancelAction = UIAlertAction(title: "Cancel", style: .Cancel/*.Destructive*/) { action in
// ...
//self.mapView.selectAnnotation(annotation, animated: false)
}
alertController.addAction(cancelAction)
let OKAction = UIAlertAction(title: "OK", style: .Default) { action in
// ...
}
alertController.addAction(OKAction)
let destroyAction = UIAlertAction(title: "Destroy", style: .Destructive) { action in
print(action)
}
alertController.addAction(destroyAction)
self.presentViewController(alertController, animated: true) {
// ...
//self.view.backgroundColor = UIColor.clearColor()
}
Как сделать, чтобы фон не затемнялся и объекты на этом фоне были сразу кликабельны (сейчас нужно сначала свернуть Алерт)