├── .gitignore ├── LICENSE.md ├── PaperFold-NavDemo ├── Default-568h@2x.png ├── PaperFold-NavDemo.xcodeproj │ └── project.pbxproj └── PaperFold-NavDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ContentViewController.h │ ├── ContentViewController.m │ ├── LeftViewController.h │ ├── LeftViewController.m │ ├── PaperFold-NavDemo-Info.plist │ ├── PaperFold-NavDemo-Prefix.pch │ ├── RightViewController.h │ ├── RightViewController.m │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── PaperFold.podspec ├── PaperFold ├── Default-568h@2x.png ├── PaperFold.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── PaperFold │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DemoRootViewController.h │ ├── DemoRootViewController.m │ ├── PaperFold-Info.plist │ ├── PaperFold-Prefix.pch │ ├── PaperFold │ ├── FacingView.h │ ├── FacingView.m │ ├── FoldView.h │ ├── FoldView.m │ ├── MultiFoldView.h │ ├── MultiFoldView.m │ ├── PaperFoldConstants.h │ ├── PaperFoldNavigationController.h │ ├── PaperFoldNavigationController.m │ ├── PaperFoldResources.bundle │ │ ├── swipe_guide_left.png │ │ ├── swipe_guide_left@2x.png │ │ ├── swipe_guide_right.png │ │ └── swipe_guide_right@2x.png │ ├── PaperFoldSwipeHintView.h │ ├── PaperFoldSwipeHintView.m │ ├── PaperFoldView.h │ ├── PaperFoldView.m │ ├── Resources │ │ ├── swipe_guide.psd │ │ └── swipe_guide2.psd │ ├── ShadowView.h │ ├── ShadowView.m │ ├── TouchThroughUIView.h │ ├── TouchThroughUIView.m │ ├── UIView+Screenshot.h │ └── UIView+Screenshot.m │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── README.md └── Screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5-topfold.png ├── 6-topfold.png ├── 7-topfold.png ├── 8-bottomfold.png ├── 9-bottomfold.png ├── leftfold.gif ├── rightfold.gif └── verticalfold.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PaperFold-NavDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/AppDelegate.h -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/AppDelegate.m -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/ContentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/ContentViewController.h -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/ContentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/ContentViewController.m -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/LeftViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/LeftViewController.h -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/LeftViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/LeftViewController.m -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/PaperFold-NavDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/PaperFold-NavDemo-Info.plist -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/PaperFold-NavDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/PaperFold-NavDemo-Prefix.pch -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/RightViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/RightViewController.h -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/RightViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/RightViewController.m -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PaperFold-NavDemo/PaperFold-NavDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold-NavDemo/PaperFold-NavDemo/main.m -------------------------------------------------------------------------------- /PaperFold.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold.podspec -------------------------------------------------------------------------------- /PaperFold/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/Default-568h@2x.png -------------------------------------------------------------------------------- /PaperFold/PaperFold.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PaperFold/PaperFold.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PaperFold/PaperFold/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/AppDelegate.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/AppDelegate.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/DemoRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/DemoRootViewController.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/DemoRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/DemoRootViewController.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold-Info.plist -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold-Prefix.pch -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/FacingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/FacingView.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/FacingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/FacingView.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/FoldView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/FoldView.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/FoldView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/FoldView.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/MultiFoldView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/MultiFoldView.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/MultiFoldView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/MultiFoldView.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldConstants.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldNavigationController.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldNavigationController.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_left.png -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_left@2x.png -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_right.png -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_right@2x.png -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldSwipeHintView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldSwipeHintView.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldSwipeHintView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldSwipeHintView.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldView.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/PaperFoldView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/PaperFoldView.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/Resources/swipe_guide.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/Resources/swipe_guide.psd -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/Resources/swipe_guide2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/Resources/swipe_guide2.psd -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/ShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/ShadowView.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/ShadowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/ShadowView.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/TouchThroughUIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/TouchThroughUIView.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/TouchThroughUIView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/TouchThroughUIView.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/UIView+Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/UIView+Screenshot.h -------------------------------------------------------------------------------- /PaperFold/PaperFold/PaperFold/UIView+Screenshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/PaperFold/UIView+Screenshot.m -------------------------------------------------------------------------------- /PaperFold/PaperFold/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PaperFold/PaperFold/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/PaperFold/PaperFold/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/1.png -------------------------------------------------------------------------------- /Screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/2.png -------------------------------------------------------------------------------- /Screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/3.png -------------------------------------------------------------------------------- /Screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/4.png -------------------------------------------------------------------------------- /Screenshots/5-topfold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/5-topfold.png -------------------------------------------------------------------------------- /Screenshots/6-topfold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/6-topfold.png -------------------------------------------------------------------------------- /Screenshots/7-topfold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/7-topfold.png -------------------------------------------------------------------------------- /Screenshots/8-bottomfold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/8-bottomfold.png -------------------------------------------------------------------------------- /Screenshots/9-bottomfold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/9-bottomfold.png -------------------------------------------------------------------------------- /Screenshots/leftfold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/leftfold.gif -------------------------------------------------------------------------------- /Screenshots/rightfold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/rightfold.gif -------------------------------------------------------------------------------- /Screenshots/verticalfold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honcheng/PaperFold-for-iOS/HEAD/Screenshots/verticalfold.gif --------------------------------------------------------------------------------