├── .gitignore ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── FXBlurView │ │ ├── FXBlurView │ │ │ ├── FXBlurView.h │ │ │ └── FXBlurView.m │ │ ├── LICENCE.md │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ ├── FXBlurView │ │ │ │ └── FXBlurView.h │ │ │ └── TAPromotee │ │ │ │ ├── TACloseButton.h │ │ │ │ ├── TAITunesClient.h │ │ │ │ ├── TAPromotee.h │ │ │ │ ├── TAPromoteeApp.h │ │ │ │ └── TAPromoteeViewController.h │ │ └── Public │ │ │ ├── FXBlurView │ │ │ └── FXBlurView.h │ │ │ └── TAPromotee │ │ │ ├── TACloseButton.h │ │ │ ├── TAITunesClient.h │ │ │ ├── TAPromotee.h │ │ │ ├── TAPromoteeApp.h │ │ │ └── TAPromoteeViewController.h │ ├── Local Podspecs │ │ └── TAPromotee.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-TAPromotee-FXBlurView │ │ ├── Pods-TAPromotee-FXBlurView-Private.xcconfig │ │ ├── Pods-TAPromotee-FXBlurView-dummy.m │ │ ├── Pods-TAPromotee-FXBlurView-prefix.pch │ │ └── Pods-TAPromotee-FXBlurView.xcconfig │ │ ├── Pods-TAPromotee-TAPromotee │ │ ├── Pods-TAPromotee-TAPromotee-Private.xcconfig │ │ ├── Pods-TAPromotee-TAPromotee-dummy.m │ │ ├── Pods-TAPromotee-TAPromotee-prefix.pch │ │ └── Pods-TAPromotee-TAPromotee.xcconfig │ │ └── Pods-TAPromotee │ │ ├── Pods-TAPromotee-acknowledgements.markdown │ │ ├── Pods-TAPromotee-acknowledgements.plist │ │ ├── Pods-TAPromotee-dummy.m │ │ ├── Pods-TAPromotee-environment.h │ │ ├── Pods-TAPromotee-resources.sh │ │ ├── Pods-TAPromotee.debug.xcconfig │ │ └── Pods-TAPromotee.release.xcconfig ├── Screens │ ├── Screen1.png │ └── Screen2.png ├── TAPromotee.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── TAPromotee.xcworkspace │ └── contents.xcworkspacedata └── TAPromotee │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── LaunchImage.launchimage │ │ └── Contents.json │ └── sample-app-background.imageset │ │ ├── Contents.json │ │ └── sample-app-background@2x.png │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── TACloseButton.h │ ├── TACloseButton.m │ ├── TAITunesClient.h │ ├── TAITunesClient.m │ ├── TAPromotee.h │ ├── TAPromotee.m │ ├── TAPromoteeApp.h │ ├── TAPromoteeApp.m │ ├── TAPromoteeViewController.h │ ├── TAPromoteeViewController.m │ ├── TAStoreProductViewController.h │ └── TAStoreProductViewController.m ├── README.md └── TAPromotee.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/FXBlurView/FXBlurView/FXBlurView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/FXBlurView/FXBlurView/FXBlurView.h -------------------------------------------------------------------------------- /Example/Pods/FXBlurView/FXBlurView/FXBlurView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/FXBlurView/FXBlurView/FXBlurView.m -------------------------------------------------------------------------------- /Example/Pods/FXBlurView/LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/FXBlurView/LICENCE.md -------------------------------------------------------------------------------- /Example/Pods/FXBlurView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/FXBlurView/README.md -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FXBlurView/FXBlurView.h: -------------------------------------------------------------------------------- 1 | ../../../FXBlurView/FXBlurView/FXBlurView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/TAPromotee/TACloseButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/TACloseButton.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/TAPromotee/TAITunesClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/TAITunesClient.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/TAPromotee/TAPromotee.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/TAPromotee.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/TAPromotee/TAPromoteeApp.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/TAPromoteeApp.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/TAPromotee/TAPromoteeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/TAPromoteeViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/FXBlurView/FXBlurView.h: -------------------------------------------------------------------------------- 1 | ../../../FXBlurView/FXBlurView/FXBlurView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/TAPromotee/TACloseButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/TACloseButton.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/TAPromotee/TAITunesClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/TAITunesClient.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/TAPromotee/TAPromotee.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/TAPromotee.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/TAPromotee/TAPromoteeApp.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/TAPromoteeApp.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/TAPromotee/TAPromoteeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/TAPromoteeViewController.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/TAPromotee.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Local Podspecs/TAPromotee.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee-FXBlurView/Pods-TAPromotee-FXBlurView-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee-FXBlurView/Pods-TAPromotee-FXBlurView-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee-FXBlurView/Pods-TAPromotee-FXBlurView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee-FXBlurView/Pods-TAPromotee-FXBlurView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee-FXBlurView/Pods-TAPromotee-FXBlurView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee-FXBlurView/Pods-TAPromotee-FXBlurView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee-FXBlurView/Pods-TAPromotee-FXBlurView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee-FXBlurView/Pods-TAPromotee-FXBlurView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee-TAPromotee/Pods-TAPromotee-TAPromotee-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee-TAPromotee/Pods-TAPromotee-TAPromotee-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee-TAPromotee/Pods-TAPromotee-TAPromotee-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee-TAPromotee/Pods-TAPromotee-TAPromotee-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee-TAPromotee/Pods-TAPromotee-TAPromotee-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee-TAPromotee/Pods-TAPromotee-TAPromotee-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee-TAPromotee/Pods-TAPromotee-TAPromotee.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Pods/Target Support Files/Pods-TAPromotee/Pods-TAPromotee.release.xcconfig -------------------------------------------------------------------------------- /Example/Screens/Screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Screens/Screen1.png -------------------------------------------------------------------------------- /Example/Screens/Screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/Screens/Screen2.png -------------------------------------------------------------------------------- /Example/TAPromotee.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TAPromotee.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TAPromotee.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TAPromotee/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/AppDelegate.h -------------------------------------------------------------------------------- /Example/TAPromotee/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/AppDelegate.m -------------------------------------------------------------------------------- /Example/TAPromotee/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/TAPromotee/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/TAPromotee/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/TAPromotee/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/TAPromotee/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/TAPromotee/Images.xcassets/sample-app-background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/Images.xcassets/sample-app-background.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TAPromotee/Images.xcassets/sample-app-background.imageset/sample-app-background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/Images.xcassets/sample-app-background.imageset/sample-app-background@2x.png -------------------------------------------------------------------------------- /Example/TAPromotee/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/Info.plist -------------------------------------------------------------------------------- /Example/TAPromotee/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/ViewController.h -------------------------------------------------------------------------------- /Example/TAPromotee/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/ViewController.m -------------------------------------------------------------------------------- /Example/TAPromotee/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Example/TAPromotee/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/TACloseButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TACloseButton.h -------------------------------------------------------------------------------- /Pod/Classes/TACloseButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TACloseButton.m -------------------------------------------------------------------------------- /Pod/Classes/TAITunesClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TAITunesClient.h -------------------------------------------------------------------------------- /Pod/Classes/TAITunesClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TAITunesClient.m -------------------------------------------------------------------------------- /Pod/Classes/TAPromotee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TAPromotee.h -------------------------------------------------------------------------------- /Pod/Classes/TAPromotee.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TAPromotee.m -------------------------------------------------------------------------------- /Pod/Classes/TAPromoteeApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TAPromoteeApp.h -------------------------------------------------------------------------------- /Pod/Classes/TAPromoteeApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TAPromoteeApp.m -------------------------------------------------------------------------------- /Pod/Classes/TAPromoteeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TAPromoteeViewController.h -------------------------------------------------------------------------------- /Pod/Classes/TAPromoteeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TAPromoteeViewController.m -------------------------------------------------------------------------------- /Pod/Classes/TAStoreProductViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TAStoreProductViewController.h -------------------------------------------------------------------------------- /Pod/Classes/TAStoreProductViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/Pod/Classes/TAStoreProductViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/README.md -------------------------------------------------------------------------------- /TAPromotee.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanC/TAPromotee/HEAD/TAPromotee.podspec --------------------------------------------------------------------------------