Animation Tool for Alert like Swarm app.
You can install this to your project via CocoaPods.
pod 'TKSwarmAlert'
import TKSwarmAlert
let 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.