func showConfirm() { let alert = UIAlertView.bk_alertViewWithTitle("", message:"Are you sure?") as UIAlertView alert.bk_addButtonWithTitle("OK", handler:{ ... }) alert.bk_setCancelButtonWithTitle("Cancel", handler:{ ... }) alert.show() } func showConfirm() { let alert = UIAlertController(title:"", message:"Are you sure?", preferredStyle: UIAlertControllerStyle.Alert) alert.addAction(UIAlertAction(