├── .gitignore ├── Example ├── .DS_Store ├── HVTableView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── HVTableView-Example.xcscheme │ └── xcuserdata │ │ ├── Hamid.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── paras2.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── HVTableView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── Hamid.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── paras2.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── HVTableView │ ├── 1.jpg │ ├── 10.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ ├── ExampleAppDelegate.h │ ├── ExampleAppDelegate.m │ ├── ExampleTableViewCell.h │ ├── ExampleTableViewCell.m │ ├── ExampleViewController.h │ ├── ExampleViewController.m │ ├── HVTableView-Info.plist │ ├── HVTableView-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Main.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── expandGlyph.png │ ├── main.m │ ├── up-arrow-2.png │ ├── up-arrow-3.png │ ├── up-arrow-4.png │ └── up-arrow.png ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── HVTableView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ ├── Hamid.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── HVTableView.xcscheme │ │ │ │ ├── Pods-HVTableView_Example.xcscheme │ │ │ │ ├── Pods-HVTableView_Tests.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── paras2.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── HVTableView.xcscheme │ │ │ ├── Pods-HVTableView_Example.xcscheme │ │ │ ├── Pods-HVTableView_Tests.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── HVTableView │ │ ├── HVTableView-dummy.m │ │ ├── HVTableView-prefix.pch │ │ ├── HVTableView-umbrella.h │ │ ├── HVTableView.modulemap │ │ ├── HVTableView.xcconfig │ │ └── Info.plist │ │ ├── Pods-HVTableView_Example │ │ ├── Info.plist │ │ ├── Pods-HVTableView_Example-acknowledgements.markdown │ │ ├── Pods-HVTableView_Example-acknowledgements.plist │ │ ├── Pods-HVTableView_Example-dummy.m │ │ ├── Pods-HVTableView_Example-frameworks.sh │ │ ├── Pods-HVTableView_Example-resources.sh │ │ ├── Pods-HVTableView_Example-umbrella.h │ │ ├── Pods-HVTableView_Example.debug.xcconfig │ │ ├── Pods-HVTableView_Example.modulemap │ │ └── Pods-HVTableView_Example.release.xcconfig │ │ └── Pods-HVTableView_Tests │ │ ├── Info.plist │ │ ├── Pods-HVTableView_Tests-acknowledgements.markdown │ │ ├── Pods-HVTableView_Tests-acknowledgements.plist │ │ ├── Pods-HVTableView_Tests-dummy.m │ │ ├── Pods-HVTableView_Tests-frameworks.sh │ │ ├── Pods-HVTableView_Tests-resources.sh │ │ ├── Pods-HVTableView_Tests-umbrella.h │ │ ├── Pods-HVTableView_Tests.debug.xcconfig │ │ ├── Pods-HVTableView_Tests.modulemap │ │ └── Pods-HVTableView_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── HVTableView.podspec ├── HVTableView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── HVTableView.h │ └── HVTableView.m ├── LICENSE ├── README.md ├── Screens ├── animation.gif └── example.mp4 └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/.DS_Store -------------------------------------------------------------------------------- /Example/HVTableView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/HVTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HVTableView.xcodeproj/xcshareddata/xcschemes/HVTableView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView.xcodeproj/xcshareddata/xcschemes/HVTableView-Example.xcscheme -------------------------------------------------------------------------------- /Example/HVTableView.xcodeproj/xcuserdata/Hamid.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView.xcodeproj/xcuserdata/Hamid.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/HVTableView.xcodeproj/xcuserdata/paras2.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView.xcodeproj/xcuserdata/paras2.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/HVTableView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HVTableView.xcworkspace/xcuserdata/Hamid.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView.xcworkspace/xcuserdata/Hamid.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/HVTableView.xcworkspace/xcuserdata/Hamid.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView.xcworkspace/xcuserdata/Hamid.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/HVTableView.xcworkspace/xcuserdata/paras2.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView.xcworkspace/xcuserdata/paras2.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/HVTableView.xcworkspace/xcuserdata/paras2.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView.xcworkspace/xcuserdata/paras2.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/HVTableView/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/1.jpg -------------------------------------------------------------------------------- /Example/HVTableView/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/10.jpg -------------------------------------------------------------------------------- /Example/HVTableView/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/2.jpg -------------------------------------------------------------------------------- /Example/HVTableView/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/3.jpg -------------------------------------------------------------------------------- /Example/HVTableView/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/4.jpg -------------------------------------------------------------------------------- /Example/HVTableView/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/5.jpg -------------------------------------------------------------------------------- /Example/HVTableView/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/6.jpg -------------------------------------------------------------------------------- /Example/HVTableView/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/7.jpg -------------------------------------------------------------------------------- /Example/HVTableView/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/8.jpg -------------------------------------------------------------------------------- /Example/HVTableView/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/9.jpg -------------------------------------------------------------------------------- /Example/HVTableView/ExampleAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/ExampleAppDelegate.h -------------------------------------------------------------------------------- /Example/HVTableView/ExampleAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/ExampleAppDelegate.m -------------------------------------------------------------------------------- /Example/HVTableView/ExampleTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/ExampleTableViewCell.h -------------------------------------------------------------------------------- /Example/HVTableView/ExampleTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/ExampleTableViewCell.m -------------------------------------------------------------------------------- /Example/HVTableView/ExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/ExampleViewController.h -------------------------------------------------------------------------------- /Example/HVTableView/ExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/ExampleViewController.m -------------------------------------------------------------------------------- /Example/HVTableView/HVTableView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/HVTableView-Info.plist -------------------------------------------------------------------------------- /Example/HVTableView/HVTableView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/HVTableView-Prefix.pch -------------------------------------------------------------------------------- /Example/HVTableView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/HVTableView/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/HVTableView/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/Main.storyboard -------------------------------------------------------------------------------- /Example/HVTableView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/HVTableView/expandGlyph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/expandGlyph.png -------------------------------------------------------------------------------- /Example/HVTableView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/main.m -------------------------------------------------------------------------------- /Example/HVTableView/up-arrow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/up-arrow-2.png -------------------------------------------------------------------------------- /Example/HVTableView/up-arrow-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/up-arrow-3.png -------------------------------------------------------------------------------- /Example/HVTableView/up-arrow-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/up-arrow-4.png -------------------------------------------------------------------------------- /Example/HVTableView/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/HVTableView/up-arrow.png -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/HVTableView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Local Podspecs/HVTableView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/Hamid.xcuserdatad/xcschemes/HVTableView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/Hamid.xcuserdatad/xcschemes/HVTableView.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/Hamid.xcuserdatad/xcschemes/Pods-HVTableView_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/Hamid.xcuserdatad/xcschemes/Pods-HVTableView_Example.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/Hamid.xcuserdatad/xcschemes/Pods-HVTableView_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/Hamid.xcuserdatad/xcschemes/Pods-HVTableView_Tests.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/Hamid.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/Hamid.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/paras2.xcuserdatad/xcschemes/HVTableView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/paras2.xcuserdatad/xcschemes/HVTableView.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/paras2.xcuserdatad/xcschemes/Pods-HVTableView_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/paras2.xcuserdatad/xcschemes/Pods-HVTableView_Example.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/paras2.xcuserdatad/xcschemes/Pods-HVTableView_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/paras2.xcuserdatad/xcschemes/Pods-HVTableView_Tests.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/paras2.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/paras2.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HVTableView/HVTableView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/HVTableView/HVTableView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HVTableView/HVTableView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/HVTableView/HVTableView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HVTableView/HVTableView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/HVTableView/HVTableView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HVTableView/HVTableView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/HVTableView/HVTableView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HVTableView/HVTableView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/HVTableView/HVTableView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HVTableView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/HVTableView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Example/Pods-HVTableView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Pods/Target Support Files/Pods-HVTableView_Tests/Pods-HVTableView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /HVTableView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/HVTableView.podspec -------------------------------------------------------------------------------- /HVTableView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HVTableView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HVTableView/Classes/HVTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/HVTableView/Classes/HVTableView.h -------------------------------------------------------------------------------- /HVTableView/Classes/HVTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/HVTableView/Classes/HVTableView.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/README.md -------------------------------------------------------------------------------- /Screens/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Screens/animation.gif -------------------------------------------------------------------------------- /Screens/example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovian/HVTableView/HEAD/Screens/example.mp4 -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------