├── DGExpandMenu Demo ├── DGExpandMenu.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Desgard_Duan.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Desgard_Duan.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── DGExpandMenu.xcscheme │ │ └── xcschememanagement.plist └── DGExpandMenu │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── ExpandMenu │ │ ├── Contents.json │ │ ├── close.imageset │ │ │ ├── Contents.json │ │ │ └── Group.png │ │ └── menu.imageset │ │ │ ├── Contents.json │ │ │ └── Group.png │ ├── cart.imageset │ │ ├── Contents.json │ │ └── cart.png │ ├── change.imageset │ │ ├── Contents.json │ │ └── canstock33520112.png │ ├── plus.imageset │ │ ├── Contents.json │ │ └── u=2533280242,1164039073&fm=21&gp=0.png │ ├── rotate.imageset │ │ ├── Contents.json │ │ └── undo10.png │ ├── setting.imageset │ │ ├── Contents.json │ │ └── settings.png │ └── user.imageset │ │ ├── Contents.json │ │ └── user.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DGExpandMenu │ ├── DGExpandMenuButton.h │ └── DGExpandMenuButton.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── DGExpandMenu ├── DGExpandMenuButton.h └── DGExpandMenuButton.m ├── LICENSE ├── README.md └── Screenshot ├── DGExpandMenu-o.gif ├── DGExpandMenu.gif ├── DGExpandMenuDel.gif ├── DGExpandMenuExc.gif └── DGExpandMenuRot.gif /DGExpandMenu Demo/DGExpandMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu.xcodeproj/project.xcworkspace/xcuserdata/Desgard_Duan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu.xcodeproj/project.xcworkspace/xcuserdata/Desgard_Duan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcschemes/DGExpandMenu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcschemes/DGExpandMenu.xcscheme -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/AppDelegate.h -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/AppDelegate.m -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/ExpandMenu/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/ExpandMenu/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/ExpandMenu/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/ExpandMenu/close.imageset/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/ExpandMenu/close.imageset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/ExpandMenu/close.imageset/Group.png -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/ExpandMenu/menu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/ExpandMenu/menu.imageset/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/ExpandMenu/menu.imageset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/ExpandMenu/menu.imageset/Group.png -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/cart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/cart.imageset/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/cart.imageset/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/cart.imageset/cart.png -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/change.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/change.imageset/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/change.imageset/canstock33520112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/change.imageset/canstock33520112.png -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/plus.imageset/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/plus.imageset/u=2533280242,1164039073&fm=21&gp=0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/plus.imageset/u=2533280242,1164039073&fm=21&gp=0.png -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/rotate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/rotate.imageset/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/rotate.imageset/undo10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/rotate.imageset/undo10.png -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/setting.imageset/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/setting.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/setting.imageset/settings.png -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/user.imageset/Contents.json -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/user.imageset/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Assets.xcassets/user.imageset/user.png -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/DGExpandMenu/DGExpandMenuButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/DGExpandMenu/DGExpandMenuButton.h -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/DGExpandMenu/DGExpandMenuButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/DGExpandMenu/DGExpandMenuButton.m -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/Info.plist -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/ViewController.h -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/ViewController.m -------------------------------------------------------------------------------- /DGExpandMenu Demo/DGExpandMenu/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu Demo/DGExpandMenu/main.m -------------------------------------------------------------------------------- /DGExpandMenu/DGExpandMenuButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu/DGExpandMenuButton.h -------------------------------------------------------------------------------- /DGExpandMenu/DGExpandMenuButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/DGExpandMenu/DGExpandMenuButton.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/DGExpandMenu-o.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/Screenshot/DGExpandMenu-o.gif -------------------------------------------------------------------------------- /Screenshot/DGExpandMenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/Screenshot/DGExpandMenu.gif -------------------------------------------------------------------------------- /Screenshot/DGExpandMenuDel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/Screenshot/DGExpandMenuDel.gif -------------------------------------------------------------------------------- /Screenshot/DGExpandMenuExc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/Screenshot/DGExpandMenuExc.gif -------------------------------------------------------------------------------- /Screenshot/DGExpandMenuRot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGExpandMenuButton/HEAD/Screenshot/DGExpandMenuRot.gif --------------------------------------------------------------------------------