CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.
| TestsTested | ✗ |
| LangLanguage | SwiftSwift |
| License | MIT |
| ReleasedLast Release | Oct 2015 |
| SPMSupports SPM | ✗ |
Maintained by Takuya Okamoto.
Animation Tool for Alert like Swarm app.
You can install this to your project via CocoaPods.
pod 'TKSwarmAlert'import TKSwarmAlertlet alert = TKSwarmAlert()
alert.show(type: TKSWBackgroundType.Blur, views: yourViews)
// If you want
alert.addNextViews(yourViews2)
alert.addNextViews(yourViews3)
You can also add non-animated views to alert view. Please use this method before “show”.
alert.addSubStaticView(yourStaticView)alert.didDissmissAllViews = {
println("didDissmissAllViews")
}So, you can add original view.