├── .gitignore ├── LICENSE ├── MODropAlert.podspec ├── MODropAlert ├── MODropAlertView.h ├── MODropAlertView.m ├── UIImage+ImageEffects.h └── UIImage+ImageEffects.m ├── MODropAlertDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── MasterCK.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── MasterCK.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── MODropAlertDemo.xcscheme │ └── xcschememanagement.plist ├── MODropAlertDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── LaunchImage.launchimage │ │ └── Contents.json │ └── younha.imageset │ │ ├── Contents.json │ │ └── younha.png ├── Info.plist ├── MODropAlert │ ├── MODropAlertView.h │ ├── MODropAlertView.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── ViewController.h ├── ViewController.m └── main.m ├── MODropAlertDemoTests ├── Info.plist └── MODropAlertDemoTests.m ├── README.md └── screencapture.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/LICENSE -------------------------------------------------------------------------------- /MODropAlert.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlert.podspec -------------------------------------------------------------------------------- /MODropAlert/MODropAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlert/MODropAlertView.h -------------------------------------------------------------------------------- /MODropAlert/MODropAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlert/MODropAlertView.m -------------------------------------------------------------------------------- /MODropAlert/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlert/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /MODropAlert/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlert/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /MODropAlertDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MODropAlertDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MODropAlertDemo.xcodeproj/project.xcworkspace/xcuserdata/MasterCK.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo.xcodeproj/project.xcworkspace/xcuserdata/MasterCK.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /MODropAlertDemo.xcodeproj/xcuserdata/MasterCK.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo.xcodeproj/xcuserdata/MasterCK.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /MODropAlertDemo.xcodeproj/xcuserdata/MasterCK.xcuserdatad/xcschemes/MODropAlertDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo.xcodeproj/xcuserdata/MasterCK.xcuserdatad/xcschemes/MODropAlertDemo.xcscheme -------------------------------------------------------------------------------- /MODropAlertDemo.xcodeproj/xcuserdata/MasterCK.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo.xcodeproj/xcuserdata/MasterCK.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MODropAlertDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/AppDelegate.h -------------------------------------------------------------------------------- /MODropAlertDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/AppDelegate.m -------------------------------------------------------------------------------- /MODropAlertDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MODropAlertDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MODropAlertDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /MODropAlertDemo/Images.xcassets/younha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/Images.xcassets/younha.imageset/Contents.json -------------------------------------------------------------------------------- /MODropAlertDemo/Images.xcassets/younha.imageset/younha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/Images.xcassets/younha.imageset/younha.png -------------------------------------------------------------------------------- /MODropAlertDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/Info.plist -------------------------------------------------------------------------------- /MODropAlertDemo/MODropAlert/MODropAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/MODropAlert/MODropAlertView.h -------------------------------------------------------------------------------- /MODropAlertDemo/MODropAlert/MODropAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/MODropAlert/MODropAlertView.m -------------------------------------------------------------------------------- /MODropAlertDemo/MODropAlert/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/MODropAlert/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /MODropAlertDemo/MODropAlert/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/MODropAlert/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /MODropAlertDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/ViewController.h -------------------------------------------------------------------------------- /MODropAlertDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/ViewController.m -------------------------------------------------------------------------------- /MODropAlertDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemo/main.m -------------------------------------------------------------------------------- /MODropAlertDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemoTests/Info.plist -------------------------------------------------------------------------------- /MODropAlertDemoTests/MODropAlertDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/MODropAlertDemoTests/MODropAlertDemoTests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/README.md -------------------------------------------------------------------------------- /screencapture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minsOne/MODropAlert/HEAD/screencapture.gif --------------------------------------------------------------------------------