NKAlertView 0.1.2

NKAlertView 0.1.2

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Nov 2016
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by nukesk3.



NKAlertView

Easily customizable AlertView library available.It is written in swift.

Icon Icon Icon

Installation

Manually

Download and drop /NKAlertView folder in your project.

How to use

let alert = NKAlertView(title: "title",description: "This is a more descriptive info text.",image: UIImage(named: "image.png"),style: .dark)

alert.addAction(NKAlertAction(title: "Cancel", style: .cancel, action: { () -> Void in
  print("Cancel")
}))

alert.addAction(NKAlertAction(title: "OK", style: .default, action: { () in
  print("OK")
}))

self.present(alert, animated: true, completion: nil)

Contributing

welcome the feature request or bug report feedback.

License

NKAlertView is available under the MIT license. See the LICENSE file for more info.