├── .gitignore ├── IGLDropDownMenu.podspec ├── IGLDropDownMenu ├── IGLDropDownItem.h ├── IGLDropDownItem.m ├── IGLDropDownMenu.h └── IGLDropDownMenu.m ├── IGLDropDownMenuDemo.xcodeproj └── project.pbxproj ├── IGLDropDownMenuDemo ├── IGLAppDelegate.h ├── IGLAppDelegate.m ├── IGLDemoCustomView.h ├── IGLDemoCustomView.m ├── IGLDemoViewController.h ├── IGLDemoViewController.m ├── IGLDropDownMenuDemo-Info.plist ├── IGLDropDownMenuDemo-Prefix.pch ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── LaunchImage.launchimage │ │ └── Contents.json │ ├── clouds.imageset │ │ ├── Contents.json │ │ ├── clouds.png │ │ └── clouds@2x.png │ ├── rain.imageset │ │ ├── Contents.json │ │ ├── rain.png │ │ └── rain@2x.png │ ├── snow.imageset │ │ ├── Contents.json │ │ ├── snow.png │ │ └── snow@2x.png │ ├── sun.imageset │ │ ├── Contents.json │ │ ├── sun.png │ │ └── sun@2x.png │ └── windy.imageset │ │ ├── Contents.json │ │ ├── windy.png │ │ └── windy@2x.png ├── en.lproj │ └── InfoPlist.strings └── main.m ├── IGLDropDownMenuDemoTests ├── IGLDropDownMenuDemoTests-Info.plist ├── IGLDropDownMenuDemoTests.m └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md └── Screens └── IGLDropDownMenuDemo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /IGLDropDownMenu.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenu.podspec -------------------------------------------------------------------------------- /IGLDropDownMenu/IGLDropDownItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenu/IGLDropDownItem.h -------------------------------------------------------------------------------- /IGLDropDownMenu/IGLDropDownItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenu/IGLDropDownItem.m -------------------------------------------------------------------------------- /IGLDropDownMenu/IGLDropDownMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenu/IGLDropDownMenu.h -------------------------------------------------------------------------------- /IGLDropDownMenu/IGLDropDownMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenu/IGLDropDownMenu.m -------------------------------------------------------------------------------- /IGLDropDownMenuDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/IGLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/IGLAppDelegate.h -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/IGLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/IGLAppDelegate.m -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/IGLDemoCustomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/IGLDemoCustomView.h -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/IGLDemoCustomView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/IGLDemoCustomView.m -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/IGLDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/IGLDemoViewController.h -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/IGLDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/IGLDemoViewController.m -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/IGLDropDownMenuDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/IGLDropDownMenuDemo-Info.plist -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/IGLDropDownMenuDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/IGLDropDownMenuDemo-Prefix.pch -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/clouds.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/clouds.imageset/Contents.json -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/clouds.imageset/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/clouds.imageset/clouds.png -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/clouds.imageset/clouds@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/clouds.imageset/clouds@2x.png -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/rain.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/rain.imageset/Contents.json -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/rain.imageset/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/rain.imageset/rain.png -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/rain.imageset/rain@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/rain.imageset/rain@2x.png -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/snow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/snow.imageset/Contents.json -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/snow.imageset/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/snow.imageset/snow.png -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/snow.imageset/snow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/snow.imageset/snow@2x.png -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/sun.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/sun.imageset/Contents.json -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/sun.imageset/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/sun.imageset/sun.png -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/sun.imageset/sun@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/sun.imageset/sun@2x.png -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/windy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/windy.imageset/Contents.json -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/windy.imageset/windy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/windy.imageset/windy.png -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/Images.xcassets/windy.imageset/windy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/Images.xcassets/windy.imageset/windy@2x.png -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /IGLDropDownMenuDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemo/main.m -------------------------------------------------------------------------------- /IGLDropDownMenuDemoTests/IGLDropDownMenuDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemoTests/IGLDropDownMenuDemoTests-Info.plist -------------------------------------------------------------------------------- /IGLDropDownMenuDemoTests/IGLDropDownMenuDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/IGLDropDownMenuDemoTests/IGLDropDownMenuDemoTests.m -------------------------------------------------------------------------------- /IGLDropDownMenuDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/README.md -------------------------------------------------------------------------------- /Screens/IGLDropDownMenuDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestwnh/IGLDropDownMenu/HEAD/Screens/IGLDropDownMenuDemo.gif --------------------------------------------------------------------------------