I'm trying to use this great library https://github.com/codestergit/SweetAlert-iOS
I'm managed to use it in Objective-C (it's coded in Swift) but is not working. My code is this.
SweetAlert* alert = [[SweetAlert alloc] init];
[alert showAlert:@"Hello"];
Not only the alert is not shown, but the other methods the .Swift has like "showAlert with subtitile" and many more are not exposed.
Did anyone manage yo make it work?