├── .gitignore ├── ESTCollectionViewDropDownList ├── Assets.bundle │ ├── arrow_down@2x.png │ ├── arrow_down@3x.png │ ├── arrow_up@2x.png │ ├── arrow_up@3x.png │ └── play_icon.png ├── BaseView │ ├── ESTCollectionViewDropDownList.h │ └── ESTCollectionViewDropDownList.m ├── DidSelectedTagsCollectionView │ ├── DidSelectedTagsCell.h │ ├── DidSelectedTagsCell.m │ ├── DidSelectedTagsCollectionView.h │ ├── DidSelectedTagsCollectionView.m │ ├── SelectedTagReusableView.h │ └── SelectedTagReusableView.m ├── TagListCollectionView │ ├── TagListCollectionView.h │ ├── TagListCollectionView.m │ ├── TagListCollectionViewCell.h │ └── TagListCollectionViewCell.m └── TagListContainerView │ ├── TagListContainerView.h │ └── TagListContainerView.m ├── Example ├── ESTCollectionViewDropDownList.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ESTCollectionViewDropDownList.xcworkspace │ └── contents.xcworkspacedata ├── ESTCollectionViewDropDownList │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon120-1.png │ │ │ ├── icon120.png │ │ │ ├── icon180.png │ │ │ ├── icon58.png │ │ │ ├── icon80.png │ │ │ └── icon87.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Controllers │ │ ├── RadioListViewController.h │ │ ├── RadioListViewController.m │ │ ├── radio.json │ │ └── tag_list.json │ ├── Entities │ │ ├── BaseEntity.h │ │ ├── BaseEntity.m │ │ ├── RadioEntity.h │ │ ├── RadioEntity.m │ │ ├── TagEntity.h │ │ ├── TagEntity.m │ │ ├── TagListEntity.h │ │ └── TagListEntity.m │ ├── Info.plist │ ├── PrefixHeader.pch │ ├── Views │ │ ├── RadioCollectionView.h │ │ ├── RadioCollectionView.m │ │ ├── RadioCollectionViewCell.h │ │ └── RadioCollectionViewCell.m │ └── main.m ├── ESTCollectionViewDropDownListTests │ ├── ESTCollectionViewDropDownListTests.m │ └── Info.plist ├── ESTCollectionViewDropDownListUITests │ ├── ESTCollectionViewDropDownListUITests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/.gitignore -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/Assets.bundle/arrow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/Assets.bundle/arrow_down@2x.png -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/Assets.bundle/arrow_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/Assets.bundle/arrow_down@3x.png -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/Assets.bundle/arrow_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/Assets.bundle/arrow_up@2x.png -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/Assets.bundle/arrow_up@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/Assets.bundle/arrow_up@3x.png -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/Assets.bundle/play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/Assets.bundle/play_icon.png -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/BaseView/ESTCollectionViewDropDownList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/BaseView/ESTCollectionViewDropDownList.h -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/BaseView/ESTCollectionViewDropDownList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/BaseView/ESTCollectionViewDropDownList.m -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/DidSelectedTagsCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/DidSelectedTagsCell.h -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/DidSelectedTagsCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/DidSelectedTagsCell.m -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/DidSelectedTagsCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/DidSelectedTagsCollectionView.h -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/DidSelectedTagsCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/DidSelectedTagsCollectionView.m -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/SelectedTagReusableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/SelectedTagReusableView.h -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/SelectedTagReusableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/DidSelectedTagsCollectionView/SelectedTagReusableView.m -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/TagListCollectionView/TagListCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/TagListCollectionView/TagListCollectionView.h -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/TagListCollectionView/TagListCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/TagListCollectionView/TagListCollectionView.m -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/TagListCollectionView/TagListCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/TagListCollectionView/TagListCollectionViewCell.h -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/TagListCollectionView/TagListCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/TagListCollectionView/TagListCollectionViewCell.m -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/TagListContainerView/TagListContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/TagListContainerView/TagListContainerView.h -------------------------------------------------------------------------------- /ESTCollectionViewDropDownList/TagListContainerView/TagListContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/ESTCollectionViewDropDownList/TagListContainerView/TagListContainerView.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/AppDelegate.h -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/AppDelegate.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon120-1.png -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon120.png -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon180.png -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon58.png -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon80.png -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Assets.xcassets/AppIcon.appiconset/icon87.png -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Controllers/RadioListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Controllers/RadioListViewController.h -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Controllers/RadioListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Controllers/RadioListViewController.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Controllers/radio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Controllers/radio.json -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Controllers/tag_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Controllers/tag_list.json -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Entities/BaseEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Entities/BaseEntity.h -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Entities/BaseEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Entities/BaseEntity.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Entities/RadioEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Entities/RadioEntity.h -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Entities/RadioEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Entities/RadioEntity.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Entities/TagEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Entities/TagEntity.h -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Entities/TagEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Entities/TagEntity.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Entities/TagListEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Entities/TagListEntity.h -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Entities/TagListEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Entities/TagListEntity.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Info.plist -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/PrefixHeader.pch -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Views/RadioCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Views/RadioCollectionView.h -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Views/RadioCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Views/RadioCollectionView.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Views/RadioCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Views/RadioCollectionViewCell.h -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/Views/RadioCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/Views/RadioCollectionViewCell.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownList/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownList/main.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownListTests/ESTCollectionViewDropDownListTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownListTests/ESTCollectionViewDropDownListTests.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownListTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownListTests/Info.plist -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownListUITests/ESTCollectionViewDropDownListUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownListUITests/ESTCollectionViewDropDownListUITests.m -------------------------------------------------------------------------------- /Example/ESTCollectionViewDropDownListUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/ESTCollectionViewDropDownListUITests/Info.plist -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aufree/ESTCollectionViewDropDownList/HEAD/README.md --------------------------------------------------------------------------------