├── .gitignore ├── .swift-version ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── LICENSE ├── Package.swift ├── README.md ├── Source ├── LayoutAlignment.swift ├── LayoutInfo.swift ├── TagCellLayout.swift └── TagCellLayoutDelegate.swift ├── TagCellLayout.podspec ├── TagCellLayout.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── TagCellLayout.xcscheme └── xcuserdata │ └── riteshgupta.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── TagCellLayout ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── Readme_Resources ├── tag_cc.png ├── tag_ll.png └── tag_rr.png ├── TagCollectionViewCell.swift ├── TagCollectionViewCell.xib └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/README.md -------------------------------------------------------------------------------- /Source/LayoutAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/Source/LayoutAlignment.swift -------------------------------------------------------------------------------- /Source/LayoutInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/Source/LayoutInfo.swift -------------------------------------------------------------------------------- /Source/TagCellLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/Source/TagCellLayout.swift -------------------------------------------------------------------------------- /Source/TagCellLayoutDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/Source/TagCellLayoutDelegate.swift -------------------------------------------------------------------------------- /TagCellLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout.podspec -------------------------------------------------------------------------------- /TagCellLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TagCellLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TagCellLayout.xcodeproj/xcshareddata/xcschemes/TagCellLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout.xcodeproj/xcshareddata/xcschemes/TagCellLayout.xcscheme -------------------------------------------------------------------------------- /TagCellLayout.xcodeproj/xcuserdata/riteshgupta.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout.xcodeproj/xcuserdata/riteshgupta.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TagCellLayout.xcodeproj/xcuserdata/riteshgupta.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout.xcodeproj/xcuserdata/riteshgupta.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TagCellLayout/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/AppDelegate.swift -------------------------------------------------------------------------------- /TagCellLayout/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TagCellLayout/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TagCellLayout/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TagCellLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/Info.plist -------------------------------------------------------------------------------- /TagCellLayout/Readme_Resources/tag_cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/Readme_Resources/tag_cc.png -------------------------------------------------------------------------------- /TagCellLayout/Readme_Resources/tag_ll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/Readme_Resources/tag_ll.png -------------------------------------------------------------------------------- /TagCellLayout/Readme_Resources/tag_rr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/Readme_Resources/tag_rr.png -------------------------------------------------------------------------------- /TagCellLayout/TagCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/TagCollectionViewCell.swift -------------------------------------------------------------------------------- /TagCellLayout/TagCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/TagCollectionViewCell.xib -------------------------------------------------------------------------------- /TagCellLayout/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riteshhgupta/TagCellLayout/HEAD/TagCellLayout/ViewController.swift --------------------------------------------------------------------------------