├── README.md ├── Sceenshots └── screenshot1.gif ├── TagDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── TagDemo.xccheckout │ └── xcuserdata │ │ └── alienjunx.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── alienjunx.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── TagDemo.xcscheme │ └── xcschememanagement.plist ├── TagDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── BoCollectionSectionBgLayout │ ├── AJSectionBackgroundLayout.h │ ├── AJSectionBackgroundLayout.m │ ├── AJSectionBackgroundView.h │ ├── AJSectionBackgroundView.m │ ├── AJTagModel.h │ ├── AJTagModel.m │ ├── AJTagsCell.h │ ├── AJTagsCell.m │ ├── AJTagsView.h │ └── AJTagsView.m ├── ExampleViewController.h ├── ExampleViewController.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── TagCell.h ├── TagCell.m ├── TagModel.h ├── TagModel.m ├── ViewController.h ├── ViewController.m └── main.m └── TagDemoTests ├── Info.plist └── TagDemoTests.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/README.md -------------------------------------------------------------------------------- /Sceenshots/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/Sceenshots/screenshot1.gif -------------------------------------------------------------------------------- /TagDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TagDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TagDemo.xcodeproj/project.xcworkspace/xcshareddata/TagDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo.xcodeproj/project.xcworkspace/xcshareddata/TagDemo.xccheckout -------------------------------------------------------------------------------- /TagDemo.xcodeproj/project.xcworkspace/xcuserdata/alienjunx.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo.xcodeproj/project.xcworkspace/xcuserdata/alienjunx.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TagDemo.xcodeproj/xcuserdata/alienjunx.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo.xcodeproj/xcuserdata/alienjunx.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TagDemo.xcodeproj/xcuserdata/alienjunx.xcuserdatad/xcschemes/TagDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo.xcodeproj/xcuserdata/alienjunx.xcuserdatad/xcschemes/TagDemo.xcscheme -------------------------------------------------------------------------------- /TagDemo.xcodeproj/xcuserdata/alienjunx.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo.xcodeproj/xcuserdata/alienjunx.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TagDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/AppDelegate.h -------------------------------------------------------------------------------- /TagDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/AppDelegate.m -------------------------------------------------------------------------------- /TagDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TagDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TagDemo/BoCollectionSectionBgLayout/AJSectionBackgroundLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/BoCollectionSectionBgLayout/AJSectionBackgroundLayout.h -------------------------------------------------------------------------------- /TagDemo/BoCollectionSectionBgLayout/AJSectionBackgroundLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/BoCollectionSectionBgLayout/AJSectionBackgroundLayout.m -------------------------------------------------------------------------------- /TagDemo/BoCollectionSectionBgLayout/AJSectionBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/BoCollectionSectionBgLayout/AJSectionBackgroundView.h -------------------------------------------------------------------------------- /TagDemo/BoCollectionSectionBgLayout/AJSectionBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/BoCollectionSectionBgLayout/AJSectionBackgroundView.m -------------------------------------------------------------------------------- /TagDemo/BoCollectionSectionBgLayout/AJTagModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/BoCollectionSectionBgLayout/AJTagModel.h -------------------------------------------------------------------------------- /TagDemo/BoCollectionSectionBgLayout/AJTagModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/BoCollectionSectionBgLayout/AJTagModel.m -------------------------------------------------------------------------------- /TagDemo/BoCollectionSectionBgLayout/AJTagsCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/BoCollectionSectionBgLayout/AJTagsCell.h -------------------------------------------------------------------------------- /TagDemo/BoCollectionSectionBgLayout/AJTagsCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/BoCollectionSectionBgLayout/AJTagsCell.m -------------------------------------------------------------------------------- /TagDemo/BoCollectionSectionBgLayout/AJTagsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/BoCollectionSectionBgLayout/AJTagsView.h -------------------------------------------------------------------------------- /TagDemo/BoCollectionSectionBgLayout/AJTagsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/BoCollectionSectionBgLayout/AJTagsView.m -------------------------------------------------------------------------------- /TagDemo/ExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/ExampleViewController.h -------------------------------------------------------------------------------- /TagDemo/ExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/ExampleViewController.m -------------------------------------------------------------------------------- /TagDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TagDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/Info.plist -------------------------------------------------------------------------------- /TagDemo/TagCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/TagCell.h -------------------------------------------------------------------------------- /TagDemo/TagCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/TagCell.m -------------------------------------------------------------------------------- /TagDemo/TagModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/TagModel.h -------------------------------------------------------------------------------- /TagDemo/TagModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/TagModel.m -------------------------------------------------------------------------------- /TagDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/ViewController.h -------------------------------------------------------------------------------- /TagDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/ViewController.m -------------------------------------------------------------------------------- /TagDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemo/main.m -------------------------------------------------------------------------------- /TagDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemoTests/Info.plist -------------------------------------------------------------------------------- /TagDemoTests/TagDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienjun/AJMyTags/HEAD/TagDemoTests/TagDemoTests.m --------------------------------------------------------------------------------