├── .gitignore ├── LICENSE ├── README.md ├── UIAlertWrapper.swift └── UIAlertWrapperExample ├── UIAlertWrapperExample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── UIAlertWrapperExample ├── AppDelegate.swift ├── Base.lproj └── Main.storyboard ├── Images.xcassets ├── AppIcon.appiconset │ └── Contents.json └── LaunchImage.launchimage │ └── Contents.json ├── Info.plist ├── UIAlertWrapperExample-Bridging-Header.h ├── ViewControllerObjC.h ├── ViewControllerObjC.m └── ViewControllerSwift.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/README.md -------------------------------------------------------------------------------- /UIAlertWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapper.swift -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample/AppDelegate.swift -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample/Info.plist -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample/UIAlertWrapperExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample/UIAlertWrapperExample-Bridging-Header.h -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample/ViewControllerObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample/ViewControllerObjC.h -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample/ViewControllerObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample/ViewControllerObjC.m -------------------------------------------------------------------------------- /UIAlertWrapperExample/UIAlertWrapperExample/ViewControllerSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernierST/UIAlertWrapper/HEAD/UIAlertWrapperExample/UIAlertWrapperExample/ViewControllerSwift.swift --------------------------------------------------------------------------------