NKAlert
NKAlert is a small UI framework to show message in custom alerts, is a alternative to native UIAlert of swift.
Installation
Cocoapods
To integrate NKAlert into your Xcode project using CocoaPods, specify it in your Podfile and run pod install.
platform :ios, '9.0'
use_frameworks!
pod 'NKAlert', :git => 'https://github.com/Nelkit/NKAlert.git'
Manually
Download and drop /NKAlert
folder in your project.
How to use
let alert = NKAlert(title: "Success Example", description: "This is a example with NKAlert", style: .SUCCESS)
alert.setButtons(titleOk: "OK")
alert.show(animated: true, completion: {})
License
NKAlert is available under the MIT license. See the LICENSE file for more info.