├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── SwiftyComments.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── SwiftScanner │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ └── StringScanner.swift │ ├── SwipeCellKit │ │ ├── LICENSE │ │ ├── README.md │ │ └── Source │ │ │ ├── Extensions.swift │ │ │ ├── SwipeAccessibilityCustomAction.swift │ │ │ ├── SwipeAction.swift │ │ │ ├── SwipeActionButton.swift │ │ │ ├── SwipeActionTransitioning.swift │ │ │ ├── SwipeActionsView.swift │ │ │ ├── SwipeAnimator.swift │ │ │ ├── SwipeCollectionViewCell+Accessibility.swift │ │ │ ├── SwipeCollectionViewCell+Display.swift │ │ │ ├── SwipeCollectionViewCell.swift │ │ │ ├── SwipeCollectionViewCellDelegate.swift │ │ │ ├── SwipeController.swift │ │ │ ├── SwipeExpanding.swift │ │ │ ├── SwipeExpansionStyle.swift │ │ │ ├── SwipeFeedback.swift │ │ │ ├── SwipeOptions.swift │ │ │ ├── SwipeTableViewCell+Accessibility.swift │ │ │ ├── SwipeTableViewCell+Display.swift │ │ │ ├── SwipeTableViewCell.swift │ │ │ ├── SwipeTableViewCellDelegate.swift │ │ │ ├── SwipeTransitionLayout.swift │ │ │ └── Swipeable.swift │ └── Target Support Files │ │ ├── Pods-SwiftyComments_Example │ │ ├── Info.plist │ │ ├── Pods-SwiftyComments_Example-acknowledgements.markdown │ │ ├── Pods-SwiftyComments_Example-acknowledgements.plist │ │ ├── Pods-SwiftyComments_Example-dummy.m │ │ ├── Pods-SwiftyComments_Example-frameworks.sh │ │ ├── Pods-SwiftyComments_Example-resources.sh │ │ ├── Pods-SwiftyComments_Example-umbrella.h │ │ ├── Pods-SwiftyComments_Example.debug.xcconfig │ │ ├── Pods-SwiftyComments_Example.modulemap │ │ └── Pods-SwiftyComments_Example.release.xcconfig │ │ ├── SwiftScanner │ │ ├── Info.plist │ │ ├── SwiftScanner-dummy.m │ │ ├── SwiftScanner-prefix.pch │ │ ├── SwiftScanner-umbrella.h │ │ ├── SwiftScanner.modulemap │ │ └── SwiftScanner.xcconfig │ │ ├── SwiftyComments │ │ ├── Info.plist │ │ ├── SwiftyComments-dummy.m │ │ ├── SwiftyComments-prefix.pch │ │ ├── SwiftyComments-umbrella.h │ │ ├── SwiftyComments.modulemap │ │ └── SwiftyComments.xcconfig │ │ └── SwipeCellKit │ │ ├── Info.plist │ │ ├── SwipeCellKit-dummy.m │ │ ├── SwipeCellKit-prefix.pch │ │ ├── SwipeCellKit-umbrella.h │ │ ├── SwipeCellKit.modulemap │ │ └── SwipeCellKit.xcconfig ├── SwiftyComments.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SwiftyComments-Example.xcscheme ├── SwiftyComments.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── SwiftyComments │ ├── AppDelegate.swift │ ├── Base.lproj │ └── LaunchScreen.xib │ ├── DemosTableViewController.swift │ ├── HNCommentCell.swift │ ├── HNCommentContentParser.swift │ ├── HNCommentsViewController.swift │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── HNRespond.imageset │ │ ├── Contents.json │ │ └── HNRespond.pdf │ ├── downvte.imageset │ │ ├── Contents.json │ │ └── downvte.pdf │ ├── exprt.imageset │ │ ├── Contents.json │ │ └── exprt.pdf │ ├── hadDownvte.imageset │ │ ├── Contents.json │ │ └── hadDownvte.pdf │ ├── hadUpvte.imageset │ │ ├── Contents.json │ │ └── hadUpvte.pdf │ ├── imgurDownvte.imageset │ │ ├── Contents.json │ │ └── imgurDownvte.pdf │ ├── imgurUpvte.imageset │ │ ├── Contents.json │ │ └── imgurUpvte.pdf │ ├── mre.imageset │ │ ├── Contents.json │ │ └── mre.pdf │ └── upvte.imageset │ │ ├── Contents.json │ │ └── upvte.pdf │ ├── ImgurCommentCell.swift │ ├── ImgurCommentsViewController.swift │ ├── Info.plist │ ├── LoremSwiftum.swift │ ├── MockupData.swift │ ├── RedditCommentCell.swift │ ├── RedditCommentsViewController.swift │ ├── SimpleCommentCell.swift │ ├── SimpleCommentsViewController.swift │ └── ViewController.swift ├── LICENSE ├── README.md ├── Screenshots ├── HN.mov ├── HNExample.gif ├── HNExample.png ├── HNSwipe.gif ├── HNSwipe.mov ├── Imgur.mov ├── ImgurExample.gif ├── ImgurExample.png ├── Reddit.mov ├── RedditExample.gif ├── RedditExample.png ├── RedditSwipe.gif ├── RedditSwipe.mov ├── schema.png └── schema_small.png ├── SwiftyComments.podspec ├── SwiftyComments ├── Assets │ └── Media.xcassets │ │ ├── Contents.json │ │ └── collapse.imageset │ │ ├── Collapse.pdf │ │ └── Contents.json └── Classes │ ├── AbstractComment.swift │ ├── CommentCell.swift │ ├── CommentsViewController.swift │ └── CommentsViewDelegate.swift └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SwiftyComments.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Local Podspecs/SwiftyComments.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/SwiftScanner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwiftScanner/LICENSE -------------------------------------------------------------------------------- /Example/Pods/SwiftScanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwiftScanner/README.md -------------------------------------------------------------------------------- /Example/Pods/SwiftScanner/Sources/StringScanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwiftScanner/Sources/StringScanner.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/LICENSE -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/README.md -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/Extensions.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeAccessibilityCustomAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeAccessibilityCustomAction.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeAction.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeActionButton.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeActionTransitioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeActionTransitioning.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeActionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeActionsView.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeAnimator.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeCollectionViewCell+Accessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeCollectionViewCell+Accessibility.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeCollectionViewCell+Display.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeCollectionViewCell+Display.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeCollectionViewCell.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeCollectionViewCellDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeCollectionViewCellDelegate.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeController.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeExpanding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeExpanding.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeExpansionStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeExpansionStyle.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeFeedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeFeedback.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeOptions.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeTableViewCell+Accessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeTableViewCell+Accessibility.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeTableViewCell+Display.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeTableViewCell+Display.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeTableViewCell.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeTableViewCellDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeTableViewCellDelegate.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/SwipeTransitionLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/SwipeTransitionLayout.swift -------------------------------------------------------------------------------- /Example/Pods/SwipeCellKit/Source/Swipeable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/SwipeCellKit/Source/Swipeable.swift -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/Pods-SwiftyComments_Example/Pods-SwiftyComments_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftScanner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftScanner/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftScanner/SwiftScanner-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftScanner/SwiftScanner-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftScanner/SwiftScanner-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftScanner/SwiftScanner-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftScanner/SwiftScanner-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftScanner/SwiftScanner-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftScanner/SwiftScanner.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftScanner/SwiftScanner.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftScanner/SwiftScanner.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftScanner/SwiftScanner.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftyComments/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftyComments/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftyComments/SwiftyComments-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftyComments/SwiftyComments-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftyComments/SwiftyComments-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftyComments/SwiftyComments-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftyComments/SwiftyComments-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftyComments/SwiftyComments-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftyComments/SwiftyComments.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftyComments/SwiftyComments.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftyComments/SwiftyComments.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwiftyComments/SwiftyComments.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwipeCellKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwipeCellKit/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwipeCellKit/SwipeCellKit-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwipeCellKit/SwipeCellKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwipeCellKit/SwipeCellKit.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwipeCellKit/SwipeCellKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/Pods/Target Support Files/SwipeCellKit/SwipeCellKit.xcconfig -------------------------------------------------------------------------------- /Example/SwiftyComments.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SwiftyComments.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SwiftyComments.xcodeproj/xcshareddata/xcschemes/SwiftyComments-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments.xcodeproj/xcshareddata/xcschemes/SwiftyComments-Example.xcscheme -------------------------------------------------------------------------------- /Example/SwiftyComments.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SwiftyComments.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SwiftyComments/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SwiftyComments/DemosTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/DemosTableViewController.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/HNCommentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/HNCommentCell.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/HNCommentContentParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/HNCommentContentParser.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/HNCommentsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/HNCommentsViewController.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/HNRespond.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/HNRespond.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/HNRespond.imageset/HNRespond.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/HNRespond.imageset/HNRespond.pdf -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/downvte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/downvte.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/downvte.imageset/downvte.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/downvte.imageset/downvte.pdf -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/exprt.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/exprt.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/exprt.imageset/exprt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/exprt.imageset/exprt.pdf -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/hadDownvte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/hadDownvte.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/hadDownvte.imageset/hadDownvte.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/hadDownvte.imageset/hadDownvte.pdf -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/hadUpvte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/hadUpvte.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/hadUpvte.imageset/hadUpvte.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/hadUpvte.imageset/hadUpvte.pdf -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/imgurDownvte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/imgurDownvte.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/imgurDownvte.imageset/imgurDownvte.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/imgurDownvte.imageset/imgurDownvte.pdf -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/imgurUpvte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/imgurUpvte.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/imgurUpvte.imageset/imgurUpvte.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/imgurUpvte.imageset/imgurUpvte.pdf -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/mre.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/mre.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/mre.imageset/mre.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/mre.imageset/mre.pdf -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/upvte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/upvte.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftyComments/Images.xcassets/upvte.imageset/upvte.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Images.xcassets/upvte.imageset/upvte.pdf -------------------------------------------------------------------------------- /Example/SwiftyComments/ImgurCommentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/ImgurCommentCell.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/ImgurCommentsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/ImgurCommentsViewController.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/Info.plist -------------------------------------------------------------------------------- /Example/SwiftyComments/LoremSwiftum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/LoremSwiftum.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/MockupData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/MockupData.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/RedditCommentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/RedditCommentCell.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/RedditCommentsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/RedditCommentsViewController.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/SimpleCommentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/SimpleCommentCell.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/SimpleCommentsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/SimpleCommentsViewController.swift -------------------------------------------------------------------------------- /Example/SwiftyComments/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Example/SwiftyComments/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/HN.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/HN.mov -------------------------------------------------------------------------------- /Screenshots/HNExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/HNExample.gif -------------------------------------------------------------------------------- /Screenshots/HNExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/HNExample.png -------------------------------------------------------------------------------- /Screenshots/HNSwipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/HNSwipe.gif -------------------------------------------------------------------------------- /Screenshots/HNSwipe.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/HNSwipe.mov -------------------------------------------------------------------------------- /Screenshots/Imgur.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/Imgur.mov -------------------------------------------------------------------------------- /Screenshots/ImgurExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/ImgurExample.gif -------------------------------------------------------------------------------- /Screenshots/ImgurExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/ImgurExample.png -------------------------------------------------------------------------------- /Screenshots/Reddit.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/Reddit.mov -------------------------------------------------------------------------------- /Screenshots/RedditExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/RedditExample.gif -------------------------------------------------------------------------------- /Screenshots/RedditExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/RedditExample.png -------------------------------------------------------------------------------- /Screenshots/RedditSwipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/RedditSwipe.gif -------------------------------------------------------------------------------- /Screenshots/RedditSwipe.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/RedditSwipe.mov -------------------------------------------------------------------------------- /Screenshots/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/schema.png -------------------------------------------------------------------------------- /Screenshots/schema_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/Screenshots/schema_small.png -------------------------------------------------------------------------------- /SwiftyComments.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/SwiftyComments.podspec -------------------------------------------------------------------------------- /SwiftyComments/Assets/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/SwiftyComments/Assets/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftyComments/Assets/Media.xcassets/collapse.imageset/Collapse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/SwiftyComments/Assets/Media.xcassets/collapse.imageset/Collapse.pdf -------------------------------------------------------------------------------- /SwiftyComments/Assets/Media.xcassets/collapse.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/SwiftyComments/Assets/Media.xcassets/collapse.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftyComments/Classes/AbstractComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/SwiftyComments/Classes/AbstractComment.swift -------------------------------------------------------------------------------- /SwiftyComments/Classes/CommentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/SwiftyComments/Classes/CommentCell.swift -------------------------------------------------------------------------------- /SwiftyComments/Classes/CommentsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/SwiftyComments/Classes/CommentsViewController.swift -------------------------------------------------------------------------------- /SwiftyComments/Classes/CommentsViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsucres/SwiftyComments/HEAD/SwiftyComments/Classes/CommentsViewDelegate.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------