├── KAlert.framework ├── Assets.car ├── CommonAlertVC.nib │ ├── objects-11.0+.nib │ ├── objects-13.0+.nib │ └── runtime.nib ├── Headers │ ├── KAlert-Swift.h │ └── KAlert.h ├── Info.plist ├── KAlert ├── Modules │ ├── KAlert.swiftmodule │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ ├── x86_64-apple-ios-simulator.swiftmodule │ │ ├── x86_64.swiftdoc │ │ └── x86_64.swiftmodule │ └── module.modulemap └── _CodeSignature │ └── CodeResources ├── KCustomAlert ├── KCustomAlert.xcodeproj │ └── project.pbxproj └── KCustomAlert │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── icon.imageset │ │ ├── Contents.json │ │ └── icons8-male-user-48.png │ └── logo.imageset │ │ ├── Contents.json │ │ └── store.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CustomAlert │ ├── CommonAlertVC.swift │ ├── CommonAlertVC.xib │ ├── ExtensionUIViewController.swift │ └── UIViewExtension.swift │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── README.md └── _config.yml /KAlert.framework/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/Assets.car -------------------------------------------------------------------------------- /KAlert.framework/CommonAlertVC.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/CommonAlertVC.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /KAlert.framework/CommonAlertVC.nib/objects-13.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/CommonAlertVC.nib/objects-13.0+.nib -------------------------------------------------------------------------------- /KAlert.framework/CommonAlertVC.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/CommonAlertVC.nib/runtime.nib -------------------------------------------------------------------------------- /KAlert.framework/Headers/KAlert-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/Headers/KAlert-Swift.h -------------------------------------------------------------------------------- /KAlert.framework/Headers/KAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/Headers/KAlert.h -------------------------------------------------------------------------------- /KAlert.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/Info.plist -------------------------------------------------------------------------------- /KAlert.framework/KAlert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/KAlert -------------------------------------------------------------------------------- /KAlert.framework/Modules/KAlert.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/Modules/KAlert.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /KAlert.framework/Modules/KAlert.swiftmodule/x86_64-apple-ios-simulator.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/Modules/KAlert.swiftmodule/x86_64-apple-ios-simulator.swiftmodule -------------------------------------------------------------------------------- /KAlert.framework/Modules/KAlert.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/Modules/KAlert.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /KAlert.framework/Modules/KAlert.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/Modules/KAlert.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /KAlert.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /KAlert.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KAlert.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/AppDelegate.swift -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/Assets.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/Assets.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/Assets.xcassets/icon.imageset/icons8-male-user-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/Assets.xcassets/icon.imageset/icons8-male-user-48.png -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/Assets.xcassets/logo.imageset/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/Assets.xcassets/logo.imageset/store.png -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/CustomAlert/CommonAlertVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/CustomAlert/CommonAlertVC.swift -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/CustomAlert/CommonAlertVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/CustomAlert/CommonAlertVC.xib -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/CustomAlert/ExtensionUIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/CustomAlert/ExtensionUIViewController.swift -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/CustomAlert/UIViewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/CustomAlert/UIViewExtension.swift -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/Info.plist -------------------------------------------------------------------------------- /KCustomAlert/KCustomAlert/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/KCustomAlert/KCustomAlert/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KCustomAlert/HEAD/_config.yml --------------------------------------------------------------------------------