├── .gitignore ├── .travis.yml ├── LEAlertController.podspec ├── LEAlertController ├── LEAlertController.h ├── LEAlertController.m ├── UIActionSheet+LEBlocks.h ├── UIActionSheet+LEBlocks.m ├── UIAlertView+LEBlocks.h └── UIAlertView+LEBlocks.m ├── LEAlertControllerDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── LEAlertControllerDemo.xcscheme ├── LEAlertControllerDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── LICENSE ├── README.md └── Screenshots ├── actionsheet.png └── alert.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/.travis.yml -------------------------------------------------------------------------------- /LEAlertController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertController.podspec -------------------------------------------------------------------------------- /LEAlertController/LEAlertController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertController/LEAlertController.h -------------------------------------------------------------------------------- /LEAlertController/LEAlertController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertController/LEAlertController.m -------------------------------------------------------------------------------- /LEAlertController/UIActionSheet+LEBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertController/UIActionSheet+LEBlocks.h -------------------------------------------------------------------------------- /LEAlertController/UIActionSheet+LEBlocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertController/UIActionSheet+LEBlocks.m -------------------------------------------------------------------------------- /LEAlertController/UIAlertView+LEBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertController/UIAlertView+LEBlocks.h -------------------------------------------------------------------------------- /LEAlertController/UIAlertView+LEBlocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertController/UIAlertView+LEBlocks.m -------------------------------------------------------------------------------- /LEAlertControllerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LEAlertControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LEAlertControllerDemo.xcodeproj/xcshareddata/xcschemes/LEAlertControllerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo.xcodeproj/xcshareddata/xcschemes/LEAlertControllerDemo.xcscheme -------------------------------------------------------------------------------- /LEAlertControllerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo/AppDelegate.h -------------------------------------------------------------------------------- /LEAlertControllerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo/AppDelegate.m -------------------------------------------------------------------------------- /LEAlertControllerDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /LEAlertControllerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LEAlertControllerDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LEAlertControllerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo/Info.plist -------------------------------------------------------------------------------- /LEAlertControllerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo/ViewController.h -------------------------------------------------------------------------------- /LEAlertControllerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo/ViewController.m -------------------------------------------------------------------------------- /LEAlertControllerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LEAlertControllerDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/actionsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/Screenshots/actionsheet.png -------------------------------------------------------------------------------- /Screenshots/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efremidze/LEAlertController/HEAD/Screenshots/alert.png --------------------------------------------------------------------------------