├── .gitignore ├── LICENSE.md ├── README.md ├── SIActionSheet.podspec ├── SIActionSheet ├── SIActionSheet.bundle │ ├── button-cancel-d.png │ ├── button-cancel-d@2x.png │ ├── button-cancel.png │ ├── button-cancel@2x.png │ ├── button-default-d.png │ ├── button-default-d@2x.png │ ├── button-default.png │ ├── button-default@2x.png │ ├── button-destructive-d.png │ ├── button-destructive-d@2x.png │ ├── button-destructive.png │ └── button-destructive@2x.png ├── SIActionSheet.h ├── SIActionSheet.m ├── SIPopoverBackgroundView.h ├── SIPopoverBackgroundView.m ├── UIWindow+SIUtils.h └── UIWindow+SIUtils.m └── SIActionSheetExample ├── Icon-72.png ├── Icon-72@2x.png ├── Icon.png ├── Icon@2x.png ├── SIActionSheetExample.xcodeproj └── project.pbxproj └── SIActionSheetExample ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── SIActionSheetExample-Info.plist ├── SIActionSheetExample-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj ├── InfoPlist.strings ├── MainStoryboard_iPad.storyboard └── MainStoryboard_iPhone.storyboard └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/README.md -------------------------------------------------------------------------------- /SIActionSheet.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet.podspec -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-cancel-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-cancel-d.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-cancel-d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-cancel-d@2x.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-cancel.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-cancel@2x.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-default-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-default-d.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-default-d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-default-d@2x.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-default.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-default@2x.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-destructive-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-destructive-d.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-destructive-d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-destructive-d@2x.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-destructive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-destructive.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.bundle/button-destructive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.bundle/button-destructive@2x.png -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.h -------------------------------------------------------------------------------- /SIActionSheet/SIActionSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIActionSheet.m -------------------------------------------------------------------------------- /SIActionSheet/SIPopoverBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIPopoverBackgroundView.h -------------------------------------------------------------------------------- /SIActionSheet/SIPopoverBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/SIPopoverBackgroundView.m -------------------------------------------------------------------------------- /SIActionSheet/UIWindow+SIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/UIWindow+SIUtils.h -------------------------------------------------------------------------------- /SIActionSheet/UIWindow+SIUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheet/UIWindow+SIUtils.m -------------------------------------------------------------------------------- /SIActionSheetExample/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/Icon-72.png -------------------------------------------------------------------------------- /SIActionSheetExample/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/Icon-72@2x.png -------------------------------------------------------------------------------- /SIActionSheetExample/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/Icon.png -------------------------------------------------------------------------------- /SIActionSheetExample/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/Icon@2x.png -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/AppDelegate.h -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/AppDelegate.m -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/Default-568h@2x.png -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/Default.png -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/Default@2x.png -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/SIActionSheetExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/SIActionSheetExample-Info.plist -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/SIActionSheetExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/SIActionSheetExample-Prefix.pch -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/ViewController.h -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/ViewController.m -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /SIActionSheetExample/SIActionSheetExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumi-Interactive/SIActionSheet/HEAD/SIActionSheetExample/SIActionSheetExample/main.m --------------------------------------------------------------------------------