├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── RFAboutView │ │ │ │ ├── RFAboutViewController.h │ │ │ │ └── RFAboutViewDetailViewController.h │ │ └── Public │ │ │ └── RFAboutView │ │ │ ├── RFAboutViewController.h │ │ │ └── RFAboutViewDetailViewController.h │ ├── Local Podspecs │ │ └── RFAboutView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-RFAboutView-RFAboutView │ │ ├── Pods-RFAboutView-RFAboutView-Private.xcconfig │ │ ├── Pods-RFAboutView-RFAboutView-dummy.m │ │ ├── Pods-RFAboutView-RFAboutView-prefix.pch │ │ └── Pods-RFAboutView-RFAboutView.xcconfig │ │ ├── Pods-RFAboutView │ │ ├── Pods-RFAboutView-acknowledgements.markdown │ │ ├── Pods-RFAboutView-acknowledgements.plist │ │ ├── Pods-RFAboutView-dummy.m │ │ ├── Pods-RFAboutView-environment.h │ │ ├── Pods-RFAboutView-resources.sh │ │ ├── Pods-RFAboutView.debug.xcconfig │ │ └── Pods-RFAboutView.release.xcconfig │ │ ├── Pods-Tests-RFAboutView │ │ ├── Pods-Tests-RFAboutView-Private.xcconfig │ │ ├── Pods-Tests-RFAboutView-dummy.m │ │ ├── Pods-Tests-RFAboutView-prefix.pch │ │ └── Pods-Tests-RFAboutView.xcconfig │ │ └── Pods-Tests │ │ ├── Pods-Tests-acknowledgements.markdown │ │ ├── Pods-Tests-acknowledgements.plist │ │ ├── Pods-Tests-dummy.m │ │ ├── Pods-Tests-environment.h │ │ ├── Pods-Tests-resources.sh │ │ ├── Pods-Tests.debug.xcconfig │ │ └── Pods-Tests.release.xcconfig ├── RFAboutView.strings ├── RFAboutView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── RFAboutView-Example.xcscheme ├── RFAboutView.xcworkspace │ └── contents.xcworkspacedata ├── RFAboutView │ ├── Acknowledgements.plist │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── M2DWebViewController.h │ ├── M2DWebViewController.m │ ├── RFAboutView-Info.plist │ ├── RFAboutView-Prefix.pch │ ├── RFAppDelegate.h │ ├── RFAppDelegate.m │ ├── RFViewController.h │ ├── RFViewController.m │ ├── about_header_bg.jpg │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── RFAboutView.strings │ ├── it.lproj │ │ └── RFAboutView.strings │ └── main.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ ├── .gitkeep │ ├── RFAboutViewCloseX.png │ ├── RFAboutViewCloseX@2x.png │ └── RFAboutViewCloseX@3x.png └── Classes │ ├── .gitkeep │ ├── RFAboutViewController.h │ ├── RFAboutViewController.m │ ├── RFAboutViewDetailViewController.h │ └── RFAboutViewDetailViewController.m ├── README.md └── RFAboutView.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/RFAboutView/RFAboutViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/RFAboutViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/RFAboutView/RFAboutViewDetailViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/RFAboutViewDetailViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/RFAboutView/RFAboutViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/RFAboutViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/RFAboutView/RFAboutViewDetailViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/RFAboutViewDetailViewController.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/RFAboutView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Local Podspecs/RFAboutView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView-RFAboutView/Pods-RFAboutView-RFAboutView-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-RFAboutView-RFAboutView/Pods-RFAboutView-RFAboutView-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView-RFAboutView/Pods-RFAboutView-RFAboutView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-RFAboutView-RFAboutView/Pods-RFAboutView-RFAboutView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView-RFAboutView/Pods-RFAboutView-RFAboutView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-RFAboutView-RFAboutView/Pods-RFAboutView-RFAboutView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView-RFAboutView/Pods-RFAboutView-RFAboutView.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-RFAboutView/Pods-RFAboutView.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-RFAboutView/Pods-Tests-RFAboutView-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-Tests-RFAboutView/Pods-Tests-RFAboutView-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-RFAboutView/Pods-Tests-RFAboutView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-Tests-RFAboutView/Pods-Tests-RFAboutView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-RFAboutView/Pods-Tests-RFAboutView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-Tests-RFAboutView/Pods-Tests-RFAboutView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-RFAboutView/Pods-Tests-RFAboutView.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/RFAboutView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView.strings -------------------------------------------------------------------------------- /Example/RFAboutView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/RFAboutView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RFAboutView.xcodeproj/xcshareddata/xcschemes/RFAboutView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView.xcodeproj/xcshareddata/xcschemes/RFAboutView-Example.xcscheme -------------------------------------------------------------------------------- /Example/RFAboutView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RFAboutView/Acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/Acknowledgements.plist -------------------------------------------------------------------------------- /Example/RFAboutView/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Example/RFAboutView/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/RFAboutView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/RFAboutView/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/RFAboutView/M2DWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/M2DWebViewController.h -------------------------------------------------------------------------------- /Example/RFAboutView/M2DWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/M2DWebViewController.m -------------------------------------------------------------------------------- /Example/RFAboutView/RFAboutView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/RFAboutView-Info.plist -------------------------------------------------------------------------------- /Example/RFAboutView/RFAboutView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/RFAboutView-Prefix.pch -------------------------------------------------------------------------------- /Example/RFAboutView/RFAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/RFAppDelegate.h -------------------------------------------------------------------------------- /Example/RFAboutView/RFAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/RFAppDelegate.m -------------------------------------------------------------------------------- /Example/RFAboutView/RFViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/RFViewController.h -------------------------------------------------------------------------------- /Example/RFAboutView/RFViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/RFViewController.m -------------------------------------------------------------------------------- /Example/RFAboutView/about_header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/about_header_bg.jpg -------------------------------------------------------------------------------- /Example/RFAboutView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/RFAboutView/en.lproj/RFAboutView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/en.lproj/RFAboutView.strings -------------------------------------------------------------------------------- /Example/RFAboutView/it.lproj/RFAboutView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/it.lproj/RFAboutView.strings -------------------------------------------------------------------------------- /Example/RFAboutView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/RFAboutView/main.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Assets/RFAboutViewCloseX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Pod/Assets/RFAboutViewCloseX.png -------------------------------------------------------------------------------- /Pod/Assets/RFAboutViewCloseX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Pod/Assets/RFAboutViewCloseX@2x.png -------------------------------------------------------------------------------- /Pod/Assets/RFAboutViewCloseX@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Pod/Assets/RFAboutViewCloseX@3x.png -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/RFAboutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Pod/Classes/RFAboutViewController.h -------------------------------------------------------------------------------- /Pod/Classes/RFAboutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Pod/Classes/RFAboutViewController.m -------------------------------------------------------------------------------- /Pod/Classes/RFAboutViewDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Pod/Classes/RFAboutViewDetailViewController.h -------------------------------------------------------------------------------- /Pod/Classes/RFAboutViewDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/Pod/Classes/RFAboutViewDetailViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/README.md -------------------------------------------------------------------------------- /RFAboutView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouquet/RFAboutView/HEAD/RFAboutView.podspec --------------------------------------------------------------------------------