├── LICENSE ├── ObjC ├── AutomaticHeightTagTableViewCell.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── Allen.xcuserdatad │ │ └── xcschemes │ │ └── AutomaticHeightTagTableViewCell.xcscheme └── AutomaticHeightTagTableViewCell │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon1024.png │ │ ├── icon120-1.png │ │ ├── icon120.png │ │ ├── icon180.png │ │ ├── icon58.png │ │ ├── icon80.png │ │ └── icon87.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── InfoPlist.strings │ ├── Models │ ├── AHTag.h │ ├── AHTag.m │ └── TagGroups.json │ ├── ViewController.h │ ├── ViewController.m │ ├── Views │ ├── AHTagTableViewCell.h │ ├── AHTagTableViewCell.m │ ├── AHTagTableViewCell.xib │ ├── AHTagView.h │ ├── AHTagView.m │ ├── AHTagsLabel.h │ └── AHTagsLabel.m │ └── main.m ├── README.md ├── Swift ├── AutomaticHeightTagTableViewCell.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── Allen.xcuserdatad │ │ └── xcschemes │ │ └── AutomaticHeightTagTableViewCell.xcscheme └── AutomaticHeightTagTableViewCell │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon1024.png │ │ ├── icon120-1.png │ │ ├── icon120.png │ │ ├── icon180.png │ │ ├── icon58.png │ │ ├── icon80.png │ │ └── icon87.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Models │ └── TagGroups.json │ ├── ViewController.swift │ └── Views │ ├── AHTagTableViewCell.swift │ ├── AHTagTableViewCell.xib │ ├── AHTagView.swift │ └── AHTagsLabel.swift └── images └── screenshot.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/LICENSE -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell.xcodeproj/xcuserdata/Allen.xcuserdatad/xcschemes/AutomaticHeightTagTableViewCell.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell.xcodeproj/xcuserdata/Allen.xcuserdatad/xcschemes/AutomaticHeightTagTableViewCell.xcscheme -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/AppDelegate.h -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/AppDelegate.m -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon1024.png -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon120-1.png -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon120.png -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon180.png -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon58.png -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon80.png -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon87.png -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Info.plist -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | 3 | CFBundleDisplayName = "AHT Cells"; -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Models/AHTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Models/AHTag.h -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Models/AHTag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Models/AHTag.m -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Models/TagGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Models/TagGroups.json -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/ViewController.h -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/ViewController.m -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Views/AHTagTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Views/AHTagTableViewCell.h -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Views/AHTagTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Views/AHTagTableViewCell.m -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Views/AHTagTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Views/AHTagTableViewCell.xib -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Views/AHTagView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Views/AHTagView.h -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Views/AHTagView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Views/AHTagView.m -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Views/AHTagsLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Views/AHTagsLabel.h -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/Views/AHTagsLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/Views/AHTagsLabel.m -------------------------------------------------------------------------------- /ObjC/AutomaticHeightTagTableViewCell/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/ObjC/AutomaticHeightTagTableViewCell/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/README.md -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell.xcodeproj/xcuserdata/Allen.xcuserdatad/xcschemes/AutomaticHeightTagTableViewCell.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell.xcodeproj/xcuserdata/Allen.xcuserdatad/xcschemes/AutomaticHeightTagTableViewCell.xcscheme -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/AppDelegate.swift -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon1024.png -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon120-1.png -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon120.png -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon180.png -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon58.png -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon80.png -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Assets.xcassets/AppIcon.appiconset/icon87.png -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Info.plist -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Models/TagGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Models/TagGroups.json -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/ViewController.swift -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Views/AHTagTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Views/AHTagTableViewCell.swift -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Views/AHTagTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Views/AHTagTableViewCell.xib -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Views/AHTagView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Views/AHTagView.swift -------------------------------------------------------------------------------- /Swift/AutomaticHeightTagTableViewCell/Views/AHTagsLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/Swift/AutomaticHeightTagTableViewCell/Views/AHTagsLabel.swift -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijentu/automatic-height-tagcells/HEAD/images/screenshot.png --------------------------------------------------------------------------------