├── 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 ├── ViewController+MASAdditions.h └── ViewController+MASAdditions.m ├── README.md ├── jianren.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── tbi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── tbi.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── jianren ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── controller │ ├── CommentListViewController.h │ └── CommentListViewController.m ├── main.m ├── model │ ├── CommentModel.h │ └── CommentModel.m └── view │ ├── CommentListCell.h │ ├── CommentListCell.m │ ├── CommentView.h │ ├── CommentView.m │ ├── Like@2x.png │ ├── Like@3x.png │ ├── Likeclick@2x.png │ ├── Likeclick@3x.png │ ├── ReplayCell.h │ └── ReplayCell.m ├── jianrenTests ├── Info.plist └── jianrenTests.m ├── jianrenUITests ├── Info.plist └── jianrenUITests.m └── resouce └── screenclip.gif /Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/Masonry.h -------------------------------------------------------------------------------- /Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/README.md -------------------------------------------------------------------------------- /jianren.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /jianren.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /jianren.xcodeproj/project.xcworkspace/xcuserdata/tbi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren.xcodeproj/project.xcworkspace/xcuserdata/tbi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /jianren.xcodeproj/xcuserdata/tbi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren.xcodeproj/xcuserdata/tbi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /jianren.xcodeproj/xcuserdata/tbi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren.xcodeproj/xcuserdata/tbi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /jianren/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/AppDelegate.h -------------------------------------------------------------------------------- /jianren/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/AppDelegate.m -------------------------------------------------------------------------------- /jianren/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /jianren/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /jianren/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /jianren/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/Info.plist -------------------------------------------------------------------------------- /jianren/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/ViewController.h -------------------------------------------------------------------------------- /jianren/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/ViewController.m -------------------------------------------------------------------------------- /jianren/controller/CommentListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/controller/CommentListViewController.h -------------------------------------------------------------------------------- /jianren/controller/CommentListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/controller/CommentListViewController.m -------------------------------------------------------------------------------- /jianren/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/main.m -------------------------------------------------------------------------------- /jianren/model/CommentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/model/CommentModel.h -------------------------------------------------------------------------------- /jianren/model/CommentModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/model/CommentModel.m -------------------------------------------------------------------------------- /jianren/view/CommentListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/view/CommentListCell.h -------------------------------------------------------------------------------- /jianren/view/CommentListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/view/CommentListCell.m -------------------------------------------------------------------------------- /jianren/view/CommentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/view/CommentView.h -------------------------------------------------------------------------------- /jianren/view/CommentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/view/CommentView.m -------------------------------------------------------------------------------- /jianren/view/Like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/view/Like@2x.png -------------------------------------------------------------------------------- /jianren/view/Like@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/view/Like@3x.png -------------------------------------------------------------------------------- /jianren/view/Likeclick@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/view/Likeclick@2x.png -------------------------------------------------------------------------------- /jianren/view/Likeclick@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/view/Likeclick@3x.png -------------------------------------------------------------------------------- /jianren/view/ReplayCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/view/ReplayCell.h -------------------------------------------------------------------------------- /jianren/view/ReplayCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianren/view/ReplayCell.m -------------------------------------------------------------------------------- /jianrenTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianrenTests/Info.plist -------------------------------------------------------------------------------- /jianrenTests/jianrenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianrenTests/jianrenTests.m -------------------------------------------------------------------------------- /jianrenUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianrenUITests/Info.plist -------------------------------------------------------------------------------- /jianrenUITests/jianrenUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/jianrenUITests/jianrenUITests.m -------------------------------------------------------------------------------- /resouce/screenclip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelly8219/CommentListDemo/HEAD/resouce/screenclip.gif --------------------------------------------------------------------------------