├── .gitignore ├── .swift-version ├── BFPaperTableViewCell.podspec ├── BFPaperTableViewCell.xcodeproj └── project.pbxproj ├── BFPaperTableViewCell.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── BFPaperTableViewCell.xccheckout ├── BFPaperTableViewCell ├── BFPaperAppDelegate.h ├── BFPaperAppDelegate.m ├── BFPaperTableViewCell-Info.plist ├── BFPaperTableViewCell-Prefix.pch ├── BFPaperViewController.h ├── BFPaperViewController.m ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── LaunchImage.launchimage │ │ └── Contents.json │ └── bg-blue-white-arrow.imageset │ │ ├── Contents.json │ │ └── bg-blue-white-arrow.png ├── Launch Screen.storyboard ├── SubclassOfPaperTableViewCell.h ├── SubclassOfPaperTableViewCell.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── BFPaperTableViewCellDemoGif.gif ├── BFPaperTableViewCellTests ├── BFPaperTableViewCellTests-Info.plist ├── BFPaperTableViewCellTests.m └── en.lproj │ └── InfoPlist.strings ├── CHANGELOG.md ├── Classes ├── BFPaperTableViewCell.h └── BFPaperTableViewCell.m ├── LICENSE.md ├── README.md ├── frame1.png ├── frame2.png ├── frame3.png ├── frame4.png └── frame5.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 2.3 2 | -------------------------------------------------------------------------------- /BFPaperTableViewCell.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell.podspec -------------------------------------------------------------------------------- /BFPaperTableViewCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BFPaperTableViewCell.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BFPaperTableViewCell.xcworkspace/xcshareddata/BFPaperTableViewCell.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell.xcworkspace/xcshareddata/BFPaperTableViewCell.xccheckout -------------------------------------------------------------------------------- /BFPaperTableViewCell/BFPaperAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/BFPaperAppDelegate.h -------------------------------------------------------------------------------- /BFPaperTableViewCell/BFPaperAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/BFPaperAppDelegate.m -------------------------------------------------------------------------------- /BFPaperTableViewCell/BFPaperTableViewCell-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/BFPaperTableViewCell-Info.plist -------------------------------------------------------------------------------- /BFPaperTableViewCell/BFPaperTableViewCell-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/BFPaperTableViewCell-Prefix.pch -------------------------------------------------------------------------------- /BFPaperTableViewCell/BFPaperViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/BFPaperViewController.h -------------------------------------------------------------------------------- /BFPaperTableViewCell/BFPaperViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/BFPaperViewController.m -------------------------------------------------------------------------------- /BFPaperTableViewCell/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BFPaperTableViewCell/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BFPaperTableViewCell/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /BFPaperTableViewCell/Images.xcassets/bg-blue-white-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/Images.xcassets/bg-blue-white-arrow.imageset/Contents.json -------------------------------------------------------------------------------- /BFPaperTableViewCell/Images.xcassets/bg-blue-white-arrow.imageset/bg-blue-white-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/Images.xcassets/bg-blue-white-arrow.imageset/bg-blue-white-arrow.png -------------------------------------------------------------------------------- /BFPaperTableViewCell/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/Launch Screen.storyboard -------------------------------------------------------------------------------- /BFPaperTableViewCell/SubclassOfPaperTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/SubclassOfPaperTableViewCell.h -------------------------------------------------------------------------------- /BFPaperTableViewCell/SubclassOfPaperTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/SubclassOfPaperTableViewCell.m -------------------------------------------------------------------------------- /BFPaperTableViewCell/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BFPaperTableViewCell/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCell/main.m -------------------------------------------------------------------------------- /BFPaperTableViewCellDemoGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCellDemoGif.gif -------------------------------------------------------------------------------- /BFPaperTableViewCellTests/BFPaperTableViewCellTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCellTests/BFPaperTableViewCellTests-Info.plist -------------------------------------------------------------------------------- /BFPaperTableViewCellTests/BFPaperTableViewCellTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/BFPaperTableViewCellTests/BFPaperTableViewCellTests.m -------------------------------------------------------------------------------- /BFPaperTableViewCellTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Classes/BFPaperTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/Classes/BFPaperTableViewCell.h -------------------------------------------------------------------------------- /Classes/BFPaperTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/Classes/BFPaperTableViewCell.m -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/README.md -------------------------------------------------------------------------------- /frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/frame1.png -------------------------------------------------------------------------------- /frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/frame2.png -------------------------------------------------------------------------------- /frame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/frame3.png -------------------------------------------------------------------------------- /frame4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/frame4.png -------------------------------------------------------------------------------- /frame5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfeher/BFPaperTableViewCell/HEAD/frame5.png --------------------------------------------------------------------------------