├── CommentDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── suqianghotel.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── suqianghotel.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── CommentDemo.xcscheme │ └── xcschememanagement.plist ├── CommentDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── head.imageset │ │ ├── Contents.json │ │ └── head_view_placehoder.jpg ├── Base.lproj │ └── LaunchScreen.storyboard ├── Controller │ ├── SQTopicTableViewController.h │ ├── SQTopicTableViewController.m │ ├── SQUserCenterViewController.h │ └── SQUserCenterViewController.m ├── Info.plist ├── Library │ └── TTTAttributedLabel │ │ ├── TTTAttributedLabel.h │ │ └── TTTAttributedLabel.m ├── Model │ ├── SQCommentModel.h │ ├── SQCommentModel.m │ ├── SQTopicModel.h │ └── SQTopicModel.m ├── View │ ├── SQCommentTableViewCell.h │ ├── SQCommentTableViewCell.m │ ├── SQTopicTableViewCell.h │ └── SQTopicTableViewCell.m ├── ViewModel │ ├── SQCommentCellViewModel.h │ ├── SQCommentCellViewModel.m │ ├── SQTopicCellViewModel.h │ └── SQTopicCellViewModel.m └── main.m ├── LICENSE └── README.md /CommentDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CommentDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CommentDemo.xcodeproj/project.xcworkspace/xcuserdata/suqianghotel.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo.xcodeproj/project.xcworkspace/xcuserdata/suqianghotel.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CommentDemo.xcodeproj/xcuserdata/suqianghotel.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo.xcodeproj/xcuserdata/suqianghotel.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CommentDemo.xcodeproj/xcuserdata/suqianghotel.xcuserdatad/xcschemes/CommentDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo.xcodeproj/xcuserdata/suqianghotel.xcuserdatad/xcschemes/CommentDemo.xcscheme -------------------------------------------------------------------------------- /CommentDemo.xcodeproj/xcuserdata/suqianghotel.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo.xcodeproj/xcuserdata/suqianghotel.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CommentDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/AppDelegate.h -------------------------------------------------------------------------------- /CommentDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/AppDelegate.m -------------------------------------------------------------------------------- /CommentDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CommentDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CommentDemo/Assets.xcassets/head.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Assets.xcassets/head.imageset/Contents.json -------------------------------------------------------------------------------- /CommentDemo/Assets.xcassets/head.imageset/head_view_placehoder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Assets.xcassets/head.imageset/head_view_placehoder.jpg -------------------------------------------------------------------------------- /CommentDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CommentDemo/Controller/SQTopicTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Controller/SQTopicTableViewController.h -------------------------------------------------------------------------------- /CommentDemo/Controller/SQTopicTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Controller/SQTopicTableViewController.m -------------------------------------------------------------------------------- /CommentDemo/Controller/SQUserCenterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Controller/SQUserCenterViewController.h -------------------------------------------------------------------------------- /CommentDemo/Controller/SQUserCenterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Controller/SQUserCenterViewController.m -------------------------------------------------------------------------------- /CommentDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Info.plist -------------------------------------------------------------------------------- /CommentDemo/Library/TTTAttributedLabel/TTTAttributedLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Library/TTTAttributedLabel/TTTAttributedLabel.h -------------------------------------------------------------------------------- /CommentDemo/Library/TTTAttributedLabel/TTTAttributedLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Library/TTTAttributedLabel/TTTAttributedLabel.m -------------------------------------------------------------------------------- /CommentDemo/Model/SQCommentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Model/SQCommentModel.h -------------------------------------------------------------------------------- /CommentDemo/Model/SQCommentModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Model/SQCommentModel.m -------------------------------------------------------------------------------- /CommentDemo/Model/SQTopicModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Model/SQTopicModel.h -------------------------------------------------------------------------------- /CommentDemo/Model/SQTopicModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/Model/SQTopicModel.m -------------------------------------------------------------------------------- /CommentDemo/View/SQCommentTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/View/SQCommentTableViewCell.h -------------------------------------------------------------------------------- /CommentDemo/View/SQCommentTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/View/SQCommentTableViewCell.m -------------------------------------------------------------------------------- /CommentDemo/View/SQTopicTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/View/SQTopicTableViewCell.h -------------------------------------------------------------------------------- /CommentDemo/View/SQTopicTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/View/SQTopicTableViewCell.m -------------------------------------------------------------------------------- /CommentDemo/ViewModel/SQCommentCellViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/ViewModel/SQCommentCellViewModel.h -------------------------------------------------------------------------------- /CommentDemo/ViewModel/SQCommentCellViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/ViewModel/SQCommentCellViewModel.m -------------------------------------------------------------------------------- /CommentDemo/ViewModel/SQTopicCellViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/ViewModel/SQTopicCellViewModel.h -------------------------------------------------------------------------------- /CommentDemo/ViewModel/SQTopicCellViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/ViewModel/SQTopicCellViewModel.m -------------------------------------------------------------------------------- /CommentDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/CommentDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suqiang/commentDemo/HEAD/README.md --------------------------------------------------------------------------------