├── .gitignore ├── AutoResizeCellDemo ├── AutoResizeCellDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── AutoResizeCellDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── controllers │ │ ├── AutoResizeCellController.h │ │ ├── AutoResizeCellController.m │ │ ├── AutoResizeTableController.h │ │ └── AutoResizeTableController.m │ ├── images │ │ ├── avatar.jpeg │ │ ├── avatar@2x.jpeg │ │ └── avatar@3x.jpeg │ ├── main.m │ ├── vendor │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASCompositeConstraint.m │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraint.m │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASConstraintMaker.m │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASLayoutConstraint.m │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewAttribute.m │ │ │ ├── MASViewConstraint.h │ │ │ ├── MASViewConstraint.m │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASAdditions.m │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASAdditions.m │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── category │ │ │ │ ├── UIView+AverageRange.h │ │ │ │ └── UIView+AverageRange.m │ │ └── SVProgressHUD │ │ │ ├── SVProgressHUD.bundle │ │ │ ├── angle-mask@2x.png │ │ │ ├── error@2x.png │ │ │ └── success@2x.png │ │ │ ├── SVProgressHUD.h │ │ │ └── SVProgressHUD.m │ └── views │ │ ├── AutoResizeCell.h │ │ ├── AutoResizeCell.m │ │ ├── SecondResizeCell.h │ │ └── SecondResizeCell.m └── AutoResizeCellDemoTests │ ├── AutoResizeCellDemoTests.m │ └── Info.plist ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/AppDelegate.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/AppDelegate.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/Info.plist -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/ViewController.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/ViewController.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/controllers/AutoResizeCellController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/controllers/AutoResizeCellController.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/controllers/AutoResizeCellController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/controllers/AutoResizeCellController.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/controllers/AutoResizeTableController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/controllers/AutoResizeTableController.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/controllers/AutoResizeTableController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/controllers/AutoResizeTableController.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/images/avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/images/avatar.jpeg -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/images/avatar@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/images/avatar@2x.jpeg -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/images/avatar@3x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/images/avatar@3x.jpeg -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/main.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/Masonry.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/category/UIView+AverageRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/category/UIView+AverageRange.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/category/UIView+AverageRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/Masonry/category/UIView+AverageRange.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/vendor/SVProgressHUD/SVProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/vendor/SVProgressHUD/SVProgressHUD.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/views/AutoResizeCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/views/AutoResizeCell.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/views/AutoResizeCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/views/AutoResizeCell.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/views/SecondResizeCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/views/SecondResizeCell.h -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemo/views/SecondResizeCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemo/views/SecondResizeCell.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemoTests/AutoResizeCellDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemoTests/AutoResizeCellDemoTests.m -------------------------------------------------------------------------------- /AutoResizeCellDemo/AutoResizeCellDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/AutoResizeCellDemo/AutoResizeCellDemoTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aevit/SCAutoResizeCellDemo/HEAD/README.md --------------------------------------------------------------------------------