├── .DS_Store ├── JTAlertView Example ├── .gitignore ├── JTAlertView Example.xcodeproj │ └── project.pbxproj ├── JTAlertView Example │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── city.imageset │ │ │ ├── Contents.json │ │ │ └── city@2x.png │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── JTAlertView ExampleTests │ ├── Info.plist │ └── JTAlertView_ExampleTests.m ├── JTAlertView.podspec ├── JTAlertView ├── JTAlertView.h └── JTAlertView.m ├── LICENSE.md ├── README.md └── Screens ├── alertView.png ├── parallax.gif └── popanimated.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/.DS_Store -------------------------------------------------------------------------------- /JTAlertView Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/.gitignore -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/AppDelegate.h -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/AppDelegate.m -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/Images.xcassets/city.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/Images.xcassets/city.imageset/Contents.json -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/Images.xcassets/city.imageset/city@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/Images.xcassets/city.imageset/city@2x.png -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/Info.plist -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/ViewController.h -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/ViewController.m -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView Example/main.m -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView ExampleTests/Info.plist -------------------------------------------------------------------------------- /JTAlertView Example/JTAlertView ExampleTests/JTAlertView_ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView Example/JTAlertView ExampleTests/JTAlertView_ExampleTests.m -------------------------------------------------------------------------------- /JTAlertView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView.podspec -------------------------------------------------------------------------------- /JTAlertView/JTAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView/JTAlertView.h -------------------------------------------------------------------------------- /JTAlertView/JTAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/JTAlertView/JTAlertView.m -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/README.md -------------------------------------------------------------------------------- /Screens/alertView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/Screens/alertView.png -------------------------------------------------------------------------------- /Screens/parallax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/Screens/parallax.gif -------------------------------------------------------------------------------- /Screens/popanimated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/JTAlertView/HEAD/Screens/popanimated.gif --------------------------------------------------------------------------------