├── .gitignore ├── CLTagView.podspec ├── CLTagView ├── Controller │ ├── CLTagViewController.h │ └── CLTagViewController.m ├── Model │ ├── CLTagsModel.h │ └── CLTagsModel.m ├── View │ ├── CLDispalyTagView.h │ ├── CLDispalyTagView.m │ ├── CLRecentTagView.h │ ├── CLRecentTagView.m │ ├── CLTagButton.h │ ├── CLTagButton.m │ ├── CLTagView.h │ └── CLTagView.m └── tools │ ├── CLTools.h │ └── CLTools.m ├── CLTageViewDemo.xcodeproj └── project.pbxproj ├── CLTageViewDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── CLTageViewDemoTests └── CLTageViewDemoTests.m ├── CLTageViewDemoUITests └── CLTageViewDemoUITests.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/.gitignore -------------------------------------------------------------------------------- /CLTagView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView.podspec -------------------------------------------------------------------------------- /CLTagView/Controller/CLTagViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/Controller/CLTagViewController.h -------------------------------------------------------------------------------- /CLTagView/Controller/CLTagViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/Controller/CLTagViewController.m -------------------------------------------------------------------------------- /CLTagView/Model/CLTagsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/Model/CLTagsModel.h -------------------------------------------------------------------------------- /CLTagView/Model/CLTagsModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/Model/CLTagsModel.m -------------------------------------------------------------------------------- /CLTagView/View/CLDispalyTagView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/View/CLDispalyTagView.h -------------------------------------------------------------------------------- /CLTagView/View/CLDispalyTagView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/View/CLDispalyTagView.m -------------------------------------------------------------------------------- /CLTagView/View/CLRecentTagView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/View/CLRecentTagView.h -------------------------------------------------------------------------------- /CLTagView/View/CLRecentTagView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/View/CLRecentTagView.m -------------------------------------------------------------------------------- /CLTagView/View/CLTagButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/View/CLTagButton.h -------------------------------------------------------------------------------- /CLTagView/View/CLTagButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/View/CLTagButton.m -------------------------------------------------------------------------------- /CLTagView/View/CLTagView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/View/CLTagView.h -------------------------------------------------------------------------------- /CLTagView/View/CLTagView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/View/CLTagView.m -------------------------------------------------------------------------------- /CLTagView/tools/CLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/tools/CLTools.h -------------------------------------------------------------------------------- /CLTagView/tools/CLTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTagView/tools/CLTools.m -------------------------------------------------------------------------------- /CLTageViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CLTageViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /CLTageViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /CLTageViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CLTageViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CLTageViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CLTageViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemo/Info.plist -------------------------------------------------------------------------------- /CLTageViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemo/ViewController.h -------------------------------------------------------------------------------- /CLTageViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemo/ViewController.m -------------------------------------------------------------------------------- /CLTageViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemo/main.m -------------------------------------------------------------------------------- /CLTageViewDemoTests/CLTageViewDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemoTests/CLTageViewDemoTests.m -------------------------------------------------------------------------------- /CLTageViewDemoUITests/CLTageViewDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/CLTageViewDemoUITests/CLTageViewDemoUITests.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VamCriss/CLTagView/HEAD/README.md --------------------------------------------------------------------------------