├── .gitattributes ├── .gitignore ├── MLTableAlert Files ├── Images │ ├── MLTableAlertBackground.png │ ├── MLTableAlertBackground@2x.png │ ├── MLTableAlertButton.png │ ├── MLTableAlertButton@2x.png │ ├── MLTableAlertButtonPressed.png │ ├── MLTableAlertButtonPressed@2x.png │ ├── MLTableAlertShadowMask.png │ └── MLTableAlertShadowMask@2x.png ├── MLTableAlert.h └── MLTableAlert.m ├── MLTableAlertDemo.xcodeproj └── project.pbxproj ├── MLTableAlertDemo ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── MLTableAlertDemo-Info.plist ├── MLTableAlertDemo-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib └── main.m ├── README.md └── Source Code License.rtf /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -diff -merge -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/.gitignore -------------------------------------------------------------------------------- /MLTableAlert Files/Images/MLTableAlertBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlert Files/Images/MLTableAlertBackground.png -------------------------------------------------------------------------------- /MLTableAlert Files/Images/MLTableAlertBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlert Files/Images/MLTableAlertBackground@2x.png -------------------------------------------------------------------------------- /MLTableAlert Files/Images/MLTableAlertButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlert Files/Images/MLTableAlertButton.png -------------------------------------------------------------------------------- /MLTableAlert Files/Images/MLTableAlertButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlert Files/Images/MLTableAlertButton@2x.png -------------------------------------------------------------------------------- /MLTableAlert Files/Images/MLTableAlertButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlert Files/Images/MLTableAlertButtonPressed.png -------------------------------------------------------------------------------- /MLTableAlert Files/Images/MLTableAlertButtonPressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlert Files/Images/MLTableAlertButtonPressed@2x.png -------------------------------------------------------------------------------- /MLTableAlert Files/Images/MLTableAlertShadowMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlert Files/Images/MLTableAlertShadowMask.png -------------------------------------------------------------------------------- /MLTableAlert Files/Images/MLTableAlertShadowMask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlert Files/Images/MLTableAlertShadowMask@2x.png -------------------------------------------------------------------------------- /MLTableAlert Files/MLTableAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlert Files/MLTableAlert.h -------------------------------------------------------------------------------- /MLTableAlert Files/MLTableAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlert Files/MLTableAlert.m -------------------------------------------------------------------------------- /MLTableAlertDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MLTableAlertDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/AppDelegate.h -------------------------------------------------------------------------------- /MLTableAlertDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/AppDelegate.m -------------------------------------------------------------------------------- /MLTableAlertDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /MLTableAlertDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/Default.png -------------------------------------------------------------------------------- /MLTableAlertDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/Default@2x.png -------------------------------------------------------------------------------- /MLTableAlertDemo/MLTableAlertDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/MLTableAlertDemo-Info.plist -------------------------------------------------------------------------------- /MLTableAlertDemo/MLTableAlertDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/MLTableAlertDemo-Prefix.pch -------------------------------------------------------------------------------- /MLTableAlertDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/ViewController.h -------------------------------------------------------------------------------- /MLTableAlertDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/ViewController.m -------------------------------------------------------------------------------- /MLTableAlertDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MLTableAlertDemo/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /MLTableAlertDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/MLTableAlertDemo/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/README.md -------------------------------------------------------------------------------- /Source Code License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewLabs/MLTableAlert/HEAD/Source Code License.rtf --------------------------------------------------------------------------------