├── .gitignore ├── BlockAlertsAnd-ActionSheets.podspec ├── BlockAlertsDemo.xcodeproj └── project.pbxproj ├── BlockAlertsDemo ├── BlockAlertsDemo-Info.plist ├── BlockAlertsDemo-Prefix.pch ├── BlockAlertsDemoAppDelegate.h ├── BlockAlertsDemoAppDelegate.m ├── BlockAlertsDemoViewController.h ├── BlockAlertsDemoViewController.m ├── ProjectSpecific │ └── BlockUI.h ├── ToAddToYourProjects │ ├── BlockActionSheet.h │ ├── BlockActionSheet.m │ ├── BlockAlertView.h │ ├── BlockAlertView.m │ ├── BlockBackground.h │ ├── BlockBackground.m │ ├── BlockTableAlertView.h │ ├── BlockTableAlertView.m │ ├── BlockTextPromptAlertView.h │ └── BlockTextPromptAlertView.m ├── en.lproj │ ├── BlockAlertsDemoViewController.xib │ └── InfoPlist.strings ├── images │ ├── ActionSheet │ │ ├── action-black-button-selected.png │ │ ├── action-black-button-selected@2x.png │ │ ├── action-black-button.png │ │ ├── action-black-button@2x.png │ │ ├── action-gray-button-selected.png │ │ ├── action-gray-button-selected@2x.png │ │ ├── action-gray-button.png │ │ ├── action-gray-button@2x.png │ │ ├── action-red-button-selected.png │ │ ├── action-red-button-selected@2x.png │ │ ├── action-red-button.png │ │ ├── action-red-button@2x.png │ │ ├── action-sheet-panel.png │ │ └── action-sheet-panel@2x.png │ ├── AlertView │ │ ├── alert-black-button.png │ │ ├── alert-black-button@2x.png │ │ ├── alert-gray-button.png │ │ ├── alert-gray-button@2x.png │ │ ├── alert-green-button.png │ │ ├── alert-green-button@2x.png │ │ ├── alert-red-button.png │ │ ├── alert-red-button@2x.png │ │ ├── alert-window-landscape.png │ │ ├── alert-window-landscape@2x.png │ │ ├── alert-window.png │ │ ├── alert-window@2x.png │ │ ├── alert-yellow-button.png │ │ └── alert-yellow-button@2x.png │ ├── arrived.png │ ├── arrived@2x.png │ ├── button_grey.png │ ├── button_grey@2x.png │ ├── button_red.png │ └── button_red@2x.png └── main.m ├── Default-568h@2x.png ├── LICENSE └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/.gitignore -------------------------------------------------------------------------------- /BlockAlertsAnd-ActionSheets.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsAnd-ActionSheets.podspec -------------------------------------------------------------------------------- /BlockAlertsDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BlockAlertsDemo/BlockAlertsDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/BlockAlertsDemo-Info.plist -------------------------------------------------------------------------------- /BlockAlertsDemo/BlockAlertsDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/BlockAlertsDemo-Prefix.pch -------------------------------------------------------------------------------- /BlockAlertsDemo/BlockAlertsDemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/BlockAlertsDemoAppDelegate.h -------------------------------------------------------------------------------- /BlockAlertsDemo/BlockAlertsDemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/BlockAlertsDemoAppDelegate.m -------------------------------------------------------------------------------- /BlockAlertsDemo/BlockAlertsDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/BlockAlertsDemoViewController.h -------------------------------------------------------------------------------- /BlockAlertsDemo/BlockAlertsDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/BlockAlertsDemoViewController.m -------------------------------------------------------------------------------- /BlockAlertsDemo/ProjectSpecific/BlockUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ProjectSpecific/BlockUI.h -------------------------------------------------------------------------------- /BlockAlertsDemo/ToAddToYourProjects/BlockActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ToAddToYourProjects/BlockActionSheet.h -------------------------------------------------------------------------------- /BlockAlertsDemo/ToAddToYourProjects/BlockActionSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ToAddToYourProjects/BlockActionSheet.m -------------------------------------------------------------------------------- /BlockAlertsDemo/ToAddToYourProjects/BlockAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ToAddToYourProjects/BlockAlertView.h -------------------------------------------------------------------------------- /BlockAlertsDemo/ToAddToYourProjects/BlockAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ToAddToYourProjects/BlockAlertView.m -------------------------------------------------------------------------------- /BlockAlertsDemo/ToAddToYourProjects/BlockBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ToAddToYourProjects/BlockBackground.h -------------------------------------------------------------------------------- /BlockAlertsDemo/ToAddToYourProjects/BlockBackground.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ToAddToYourProjects/BlockBackground.m -------------------------------------------------------------------------------- /BlockAlertsDemo/ToAddToYourProjects/BlockTableAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ToAddToYourProjects/BlockTableAlertView.h -------------------------------------------------------------------------------- /BlockAlertsDemo/ToAddToYourProjects/BlockTableAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ToAddToYourProjects/BlockTableAlertView.m -------------------------------------------------------------------------------- /BlockAlertsDemo/ToAddToYourProjects/BlockTextPromptAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ToAddToYourProjects/BlockTextPromptAlertView.h -------------------------------------------------------------------------------- /BlockAlertsDemo/ToAddToYourProjects/BlockTextPromptAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/ToAddToYourProjects/BlockTextPromptAlertView.m -------------------------------------------------------------------------------- /BlockAlertsDemo/en.lproj/BlockAlertsDemoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/en.lproj/BlockAlertsDemoViewController.xib -------------------------------------------------------------------------------- /BlockAlertsDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-black-button-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-black-button-selected.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-black-button-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-black-button-selected@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-black-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-black-button.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-black-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-black-button@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-gray-button-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-gray-button-selected.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-gray-button-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-gray-button-selected@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-gray-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-gray-button.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-gray-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-gray-button@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-red-button-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-red-button-selected.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-red-button-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-red-button-selected@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-red-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-red-button.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-red-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-red-button@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-sheet-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-sheet-panel.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/ActionSheet/action-sheet-panel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/ActionSheet/action-sheet-panel@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-black-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-black-button.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-black-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-black-button@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-gray-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-gray-button.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-gray-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-gray-button@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-green-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-green-button.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-green-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-green-button@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-red-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-red-button.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-red-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-red-button@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-window-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-window-landscape.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-window-landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-window-landscape@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-window.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-window@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-window@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-yellow-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-yellow-button.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/AlertView/alert-yellow-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/AlertView/alert-yellow-button@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/arrived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/arrived.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/arrived@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/arrived@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/button_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/button_grey.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/button_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/button_grey@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/button_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/button_red.png -------------------------------------------------------------------------------- /BlockAlertsDemo/images/button_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/images/button_red@2x.png -------------------------------------------------------------------------------- /BlockAlertsDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/BlockAlertsDemo/main.m -------------------------------------------------------------------------------- /Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/Default-568h@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/LICENSE -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpambrozio/BlockAlertsAnd-ActionSheets/HEAD/readme.md --------------------------------------------------------------------------------