├── README.md ├── tagView.gif ├── tagsView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Jake.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Jake.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── tagsView.xcscheme │ └── xcschememanagement.plist └── tagsView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── YJTagView ├── UICollectionViewLeftAlignedLayout.h ├── UICollectionViewLeftAlignedLayout.m ├── YJTagCollectionViewCell.h ├── YJTagCollectionViewCell.m ├── YJTagCollectionViewCell.xib ├── YJTagView.h ├── YJTagView.m └── YJTagViewProtocol.h └── main.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/README.md -------------------------------------------------------------------------------- /tagView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagView.gif -------------------------------------------------------------------------------- /tagsView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tagsView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tagsView.xcodeproj/project.xcworkspace/xcuserdata/Jake.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView.xcodeproj/project.xcworkspace/xcuserdata/Jake.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /tagsView.xcodeproj/xcuserdata/Jake.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView.xcodeproj/xcuserdata/Jake.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /tagsView.xcodeproj/xcuserdata/Jake.xcuserdatad/xcschemes/tagsView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView.xcodeproj/xcuserdata/Jake.xcuserdatad/xcschemes/tagsView.xcscheme -------------------------------------------------------------------------------- /tagsView.xcodeproj/xcuserdata/Jake.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView.xcodeproj/xcuserdata/Jake.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /tagsView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/AppDelegate.h -------------------------------------------------------------------------------- /tagsView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/AppDelegate.m -------------------------------------------------------------------------------- /tagsView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tagsView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tagsView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tagsView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/Info.plist -------------------------------------------------------------------------------- /tagsView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/ViewController.h -------------------------------------------------------------------------------- /tagsView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/ViewController.m -------------------------------------------------------------------------------- /tagsView/YJTagView/UICollectionViewLeftAlignedLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/YJTagView/UICollectionViewLeftAlignedLayout.h -------------------------------------------------------------------------------- /tagsView/YJTagView/UICollectionViewLeftAlignedLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/YJTagView/UICollectionViewLeftAlignedLayout.m -------------------------------------------------------------------------------- /tagsView/YJTagView/YJTagCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/YJTagView/YJTagCollectionViewCell.h -------------------------------------------------------------------------------- /tagsView/YJTagView/YJTagCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/YJTagView/YJTagCollectionViewCell.m -------------------------------------------------------------------------------- /tagsView/YJTagView/YJTagCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/YJTagView/YJTagCollectionViewCell.xib -------------------------------------------------------------------------------- /tagsView/YJTagView/YJTagView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/YJTagView/YJTagView.h -------------------------------------------------------------------------------- /tagsView/YJTagView/YJTagView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/YJTagView/YJTagView.m -------------------------------------------------------------------------------- /tagsView/YJTagView/YJTagViewProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/YJTagView/YJTagViewProtocol.h -------------------------------------------------------------------------------- /tagsView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuyangJake/YJTagView/HEAD/tagsView/main.m --------------------------------------------------------------------------------