├── .gitignore ├── DOPScrollableActionSheet.h ├── DOPScrollableActionSheet.m ├── DOPScrollableActionSheet ├── DOPScrollableActionSheet.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── DOPScrollableActionSheet │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── copy.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_21@2x.png │ │ ├── dropbox.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_35@2x.png │ │ ├── email.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_18@2x.png │ │ ├── evernote.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_12@2x.png │ │ ├── fb.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_10@2x.png │ │ ├── g+.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_14@2x.png │ │ ├── in.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_16@2x.png │ │ ├── line.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_42@2x.png │ │ ├── pin.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_30@2x.png │ │ ├── pocket.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_26@2x.png │ │ ├── print.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_20@2x.png │ │ ├── qq.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_24@2x.png │ │ ├── qzone.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_6@2x.png │ │ ├── sms.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_19@2x.png │ │ ├── twitter.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_11@2x.png │ │ ├── weibo.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_1@2x.png │ │ ├── weixin.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_22@2x.png │ │ ├── whatsapp.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_43@2x.png │ │ └── wxFriends.imageset │ │ │ ├── Contents.json │ │ │ └── sns_icon_23@2x.png │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── DOPScrollableActionSheetTests │ ├── DOPScrollableActionSheetTests.m │ └── Info.plist ├── LICENSE ├── README.md └── images ├── sample_ipad.gif └── sample_iphone.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/.gitignore -------------------------------------------------------------------------------- /DOPScrollableActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet.h -------------------------------------------------------------------------------- /DOPScrollableActionSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet.m -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/AppDelegate.h -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/AppDelegate.m -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/copy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/copy.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/copy.imageset/sns_icon_21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/copy.imageset/sns_icon_21@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/dropbox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/dropbox.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/dropbox.imageset/sns_icon_35@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/dropbox.imageset/sns_icon_35@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/email.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/email.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/email.imageset/sns_icon_18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/email.imageset/sns_icon_18@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/evernote.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/evernote.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/evernote.imageset/sns_icon_12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/evernote.imageset/sns_icon_12@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/fb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/fb.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/fb.imageset/sns_icon_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/fb.imageset/sns_icon_10@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/g+.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/g+.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/g+.imageset/sns_icon_14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/g+.imageset/sns_icon_14@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/in.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/in.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/in.imageset/sns_icon_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/in.imageset/sns_icon_16@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/line.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/line.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/line.imageset/sns_icon_42@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/line.imageset/sns_icon_42@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/pin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/pin.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/pin.imageset/sns_icon_30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/pin.imageset/sns_icon_30@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/pocket.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/pocket.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/pocket.imageset/sns_icon_26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/pocket.imageset/sns_icon_26@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/print.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/print.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/print.imageset/sns_icon_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/print.imageset/sns_icon_20@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/qq.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/qq.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/qq.imageset/sns_icon_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/qq.imageset/sns_icon_24@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/qzone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/qzone.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/qzone.imageset/sns_icon_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/qzone.imageset/sns_icon_6@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/sms.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/sms.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/sms.imageset/sns_icon_19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/sms.imageset/sns_icon_19@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/twitter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/twitter.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/twitter.imageset/sns_icon_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/twitter.imageset/sns_icon_11@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/weibo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/weibo.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/weibo.imageset/sns_icon_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/weibo.imageset/sns_icon_1@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/weixin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/weixin.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/weixin.imageset/sns_icon_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/weixin.imageset/sns_icon_22@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/whatsapp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/whatsapp.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/whatsapp.imageset/sns_icon_43@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/whatsapp.imageset/sns_icon_43@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/wxFriends.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/wxFriends.imageset/Contents.json -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/wxFriends.imageset/sns_icon_23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Images.xcassets/wxFriends.imageset/sns_icon_23@2x.png -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/Info.plist -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/ViewController.h -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/ViewController.m -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheet/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheet/main.m -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheetTests/DOPScrollableActionSheetTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheetTests/DOPScrollableActionSheetTests.m -------------------------------------------------------------------------------- /DOPScrollableActionSheet/DOPScrollableActionSheetTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/DOPScrollableActionSheet/DOPScrollableActionSheetTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/README.md -------------------------------------------------------------------------------- /images/sample_ipad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/images/sample_ipad.gif -------------------------------------------------------------------------------- /images/sample_iphone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopcn/DOPScrollableActionSheet/HEAD/images/sample_iphone.gif --------------------------------------------------------------------------------