Alert like Android wear
Auto Confirm Alert written in Swift like android wear.
let vc = DCAlertController(title: "test title", message: "message")
vc.setConfirmAction { (controlelr) -> Void in
self.dismissViewControllerAnimated(true, completion: { () -> Void in
print("confirm!!")
})
}
vc.setCancelAction { (controlelr) -> Void in
self.dismissViewControllerAnimated(true, completion: { () -> Void in
print("cancel!!")
})
}
presentViewController(vc, animated: true, completion: nil)
add DCAlertController.swift your project.
This software is released under the MIT License.