├── .cocoadocs.yml ├── .gitignore ├── .travis.yml ├── EVSlidingTableViewCell.podspec ├── EVSlidingTableViewCell ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── ContactItem │ ├── ContactItem.swift │ └── ContactItem.xib │ ├── DrawerCell │ ├── DrawerViewOption.swift │ └── SlidingTableViewControllerCell.swift │ ├── EVConstants.swift │ ├── Extensions │ ├── UITableViewCellExtension.swift │ ├── UIViewAutolayout.swift │ └── UIViewLoading.swift │ └── OverlayView │ ├── EVOverlay.swift │ └── EVOverlayView.swift ├── Example ├── EVSlidingTableViewCell.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── EVSlidingTableViewCell-Example.xcscheme ├── EVSlidingTableViewCell.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── EVSlidingTableViewCell │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Constants.swift │ ├── EVSlidingTableViewCell.h │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── email-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── email-icon.png │ │ │ └── email-icon@2x.png │ │ ├── home-phone-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── home-phone-icon.png │ │ │ └── home-phone-icon@2x.png │ │ ├── mobile-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── mobile-icon.png │ │ │ └── mobile-icon@2x.png │ │ └── text-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── text-icon.png │ │ │ └── text-icon@2x.png │ ├── Info.plist │ ├── OverlayView.swift │ ├── OverlayView.xib │ ├── User.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── EVSlidingTableViewCell.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── EVSlidingTableViewCell.xcscheme │ └── Target Support Files │ │ ├── EVSlidingTableViewCell │ │ ├── EVSlidingTableViewCell-dummy.m │ │ ├── EVSlidingTableViewCell-prefix.pch │ │ ├── EVSlidingTableViewCell-umbrella.h │ │ ├── EVSlidingTableViewCell.modulemap │ │ ├── EVSlidingTableViewCell.xcconfig │ │ ├── Info.plist │ │ └── ResourceBundle-EVSlidingTableViewCell-Info.plist │ │ ├── Pods-EVSlidingTableViewCell_Example │ │ ├── Info.plist │ │ ├── Pods-EVSlidingTableViewCell_Example-acknowledgements.markdown │ │ ├── Pods-EVSlidingTableViewCell_Example-acknowledgements.plist │ │ ├── Pods-EVSlidingTableViewCell_Example-dummy.m │ │ ├── Pods-EVSlidingTableViewCell_Example-frameworks.sh │ │ ├── Pods-EVSlidingTableViewCell_Example-resources.sh │ │ ├── Pods-EVSlidingTableViewCell_Example-umbrella.h │ │ ├── Pods-EVSlidingTableViewCell_Example.debug.xcconfig │ │ ├── Pods-EVSlidingTableViewCell_Example.modulemap │ │ └── Pods-EVSlidingTableViewCell_Example.release.xcconfig │ │ └── Pods-EVSlidingTableViewCell_Tests │ │ ├── Info.plist │ │ ├── Pods-EVSlidingTableViewCell_Tests-acknowledgements.markdown │ │ ├── Pods-EVSlidingTableViewCell_Tests-acknowledgements.plist │ │ ├── Pods-EVSlidingTableViewCell_Tests-dummy.m │ │ ├── Pods-EVSlidingTableViewCell_Tests-frameworks.sh │ │ ├── Pods-EVSlidingTableViewCell_Tests-resources.sh │ │ ├── Pods-EVSlidingTableViewCell_Tests-umbrella.h │ │ ├── Pods-EVSlidingTableViewCell_Tests.debug.xcconfig │ │ ├── Pods-EVSlidingTableViewCell_Tests.modulemap │ │ └── Pods-EVSlidingTableViewCell_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── SlidingTableViewCell.gif └── _Pods.xcodeproj /.cocoadocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/.cocoadocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/.travis.yml -------------------------------------------------------------------------------- /EVSlidingTableViewCell.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell.podspec -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/ContactItem/ContactItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell/Classes/ContactItem/ContactItem.swift -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/ContactItem/ContactItem.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell/Classes/ContactItem/ContactItem.xib -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/DrawerCell/DrawerViewOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell/Classes/DrawerCell/DrawerViewOption.swift -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/DrawerCell/SlidingTableViewControllerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell/Classes/DrawerCell/SlidingTableViewControllerCell.swift -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/EVConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell/Classes/EVConstants.swift -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/Extensions/UITableViewCellExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell/Classes/Extensions/UITableViewCellExtension.swift -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/Extensions/UIViewAutolayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell/Classes/Extensions/UIViewAutolayout.swift -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/Extensions/UIViewLoading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell/Classes/Extensions/UIViewLoading.swift -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/OverlayView/EVOverlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell/Classes/OverlayView/EVOverlay.swift -------------------------------------------------------------------------------- /EVSlidingTableViewCell/Classes/OverlayView/EVOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/EVSlidingTableViewCell/Classes/OverlayView/EVOverlayView.swift -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell.xcodeproj/xcshareddata/xcschemes/EVSlidingTableViewCell-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell.xcodeproj/xcshareddata/xcschemes/EVSlidingTableViewCell-Example.xcscheme -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/AppDelegate.swift -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Constants.swift -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/EVSlidingTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/EVSlidingTableViewCell.h -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/email-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/email-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/email-icon.imageset/email-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/email-icon.imageset/email-icon.png -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/email-icon.imageset/email-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/email-icon.imageset/email-icon@2x.png -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/home-phone-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/home-phone-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/home-phone-icon.imageset/home-phone-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/home-phone-icon.imageset/home-phone-icon.png -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/home-phone-icon.imageset/home-phone-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/home-phone-icon.imageset/home-phone-icon@2x.png -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/mobile-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/mobile-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/mobile-icon.imageset/mobile-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/mobile-icon.imageset/mobile-icon.png -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/mobile-icon.imageset/mobile-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/mobile-icon.imageset/mobile-icon@2x.png -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/text-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/text-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/text-icon.imageset/text-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/text-icon.imageset/text-icon.png -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Images.xcassets/text-icon.imageset/text-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Images.xcassets/text-icon.imageset/text-icon@2x.png -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/Info.plist -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/OverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/OverlayView.swift -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/OverlayView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/OverlayView.xib -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/User.swift -------------------------------------------------------------------------------- /Example/EVSlidingTableViewCell/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/EVSlidingTableViewCell/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/EVSlidingTableViewCell.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Local Podspecs/EVSlidingTableViewCell.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/EVSlidingTableViewCell.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/EVSlidingTableViewCell.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EVSlidingTableViewCell/EVSlidingTableViewCell-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/EVSlidingTableViewCell/EVSlidingTableViewCell-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EVSlidingTableViewCell/EVSlidingTableViewCell-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/EVSlidingTableViewCell/EVSlidingTableViewCell-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EVSlidingTableViewCell/EVSlidingTableViewCell-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/EVSlidingTableViewCell/EVSlidingTableViewCell-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EVSlidingTableViewCell/EVSlidingTableViewCell.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/EVSlidingTableViewCell/EVSlidingTableViewCell.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EVSlidingTableViewCell/EVSlidingTableViewCell.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/EVSlidingTableViewCell/EVSlidingTableViewCell.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EVSlidingTableViewCell/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/EVSlidingTableViewCell/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EVSlidingTableViewCell/ResourceBundle-EVSlidingTableViewCell-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/EVSlidingTableViewCell/ResourceBundle-EVSlidingTableViewCell-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Example/Pods-EVSlidingTableViewCell_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Pods/Target Support Files/Pods-EVSlidingTableViewCell_Tests/Pods-EVSlidingTableViewCell_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/README.md -------------------------------------------------------------------------------- /SlidingTableViewCell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epv44/EVSlidingTableViewCell/HEAD/SlidingTableViewCell.gif -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------