SweetAlert-iOS
SweetAlert-iOS copied to clipboard
Live animated Alert View for iOS written in Swift
Hey, your library is really interesting. The only problem I found was the `README.md`, which needs a better `Installation Section` I created this [iOS Open source Readme Template](https://github.com/awesome-labs/iOS-readme-template) so you...
As cool as this is I really don't want to use it in the project I'm working on until there is an 'autoDismiss' option
Always crashes at line 243 `let window: UIWindow = UIApplication.sharedApplication().keyWindow! `with error `fatal error: unexpectedly found nil while unwrapping an Optional value` i am calling following code in my viewController...
Pull request for even more button branch, to add more button than just 2.

Hi, Thanks for sharing the code. The issue I face is that when we change the size of the animate view the bezirepath that draws the tick of success animate...
"KTopMargin" -> "kTopMargin"
I've added a new AlertStyle: Busy with spinning circle which may be usefull for showing waiting message.
1. In `ViewController.swift`, an instance of `SweetAlert` was created but never used, so I deleted it. 2. In `SweetAlert.swift`, the `showAlert` functions don't need to return, so I deleted the...
Wouldn't it better to make the class a singleton so that there is only one instance. You would then just call functions: `SweetAlert.sharedInstance.showAlert("Here's a message!")` Just need the: `static let...