├── .gitignore ├── CC3DPerspectiveAnimationHeaderTableView.podspec ├── CC3DPerspectiveAnimationHeaderTableView.xcodeproj └── project.pbxproj ├── LICENSE ├── README.md ├── examples ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── ImageHeaderTableViewController.h ├── ImageHeaderTableViewController.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── VideoHeaderTableViewController.h ├── VideoHeaderTableViewController.m ├── WebHeaderTableViewController.h ├── WebHeaderTableViewController.m ├── images.json ├── main.m └── videos.json ├── sample1.gif └── src ├── CC3DPerspectiveAnimationHeaderTableView.h └── CC3DPerspectiveAnimationHeaderTableView.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/.gitignore -------------------------------------------------------------------------------- /CC3DPerspectiveAnimationHeaderTableView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/CC3DPerspectiveAnimationHeaderTableView.podspec -------------------------------------------------------------------------------- /CC3DPerspectiveAnimationHeaderTableView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/CC3DPerspectiveAnimationHeaderTableView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/README.md -------------------------------------------------------------------------------- /examples/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/AppDelegate.h -------------------------------------------------------------------------------- /examples/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/AppDelegate.m -------------------------------------------------------------------------------- /examples/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/ImageHeaderTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/ImageHeaderTableViewController.h -------------------------------------------------------------------------------- /examples/ImageHeaderTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/ImageHeaderTableViewController.m -------------------------------------------------------------------------------- /examples/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/Info.plist -------------------------------------------------------------------------------- /examples/VideoHeaderTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/VideoHeaderTableViewController.h -------------------------------------------------------------------------------- /examples/VideoHeaderTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/VideoHeaderTableViewController.m -------------------------------------------------------------------------------- /examples/WebHeaderTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/WebHeaderTableViewController.h -------------------------------------------------------------------------------- /examples/WebHeaderTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/WebHeaderTableViewController.m -------------------------------------------------------------------------------- /examples/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/images.json -------------------------------------------------------------------------------- /examples/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/main.m -------------------------------------------------------------------------------- /examples/videos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/examples/videos.json -------------------------------------------------------------------------------- /sample1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/sample1.gif -------------------------------------------------------------------------------- /src/CC3DPerspectiveAnimationHeaderTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/src/CC3DPerspectiveAnimationHeaderTableView.h -------------------------------------------------------------------------------- /src/CC3DPerspectiveAnimationHeaderTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caesarcat/CC3DPerspectiveAnimationHeaderTableView/HEAD/src/CC3DPerspectiveAnimationHeaderTableView.m --------------------------------------------------------------------------------