├── .gitignore ├── AvePurchaseButton.podspec ├── Example ├── PurchaseButtonExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── PurchaseButtonExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── TableViewController.h │ ├── TableViewController.m │ └── main.m ├── LICENSE ├── README.md └── Source ├── BorderedButton ├── AveBorderedButton.h ├── AveBorderedButton.m ├── AveBorderedView.h └── AveBorderedView.m └── PurchaseButton ├── AvePurchaseActivityIndicatorView.h ├── AvePurchaseActivityIndicatorView.m ├── AvePurchaseButton.h └── AvePurchaseButton.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/.gitignore -------------------------------------------------------------------------------- /AvePurchaseButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/AvePurchaseButton.podspec -------------------------------------------------------------------------------- /Example/PurchaseButtonExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/PurchaseButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PurchaseButtonExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample/AppDelegate.h -------------------------------------------------------------------------------- /Example/PurchaseButtonExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample/AppDelegate.m -------------------------------------------------------------------------------- /Example/PurchaseButtonExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/PurchaseButtonExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/PurchaseButtonExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/PurchaseButtonExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample/Info.plist -------------------------------------------------------------------------------- /Example/PurchaseButtonExample/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample/TableViewController.h -------------------------------------------------------------------------------- /Example/PurchaseButtonExample/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample/TableViewController.m -------------------------------------------------------------------------------- /Example/PurchaseButtonExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Example/PurchaseButtonExample/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/README.md -------------------------------------------------------------------------------- /Source/BorderedButton/AveBorderedButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Source/BorderedButton/AveBorderedButton.h -------------------------------------------------------------------------------- /Source/BorderedButton/AveBorderedButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Source/BorderedButton/AveBorderedButton.m -------------------------------------------------------------------------------- /Source/BorderedButton/AveBorderedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Source/BorderedButton/AveBorderedView.h -------------------------------------------------------------------------------- /Source/BorderedButton/AveBorderedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Source/BorderedButton/AveBorderedView.m -------------------------------------------------------------------------------- /Source/PurchaseButton/AvePurchaseActivityIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Source/PurchaseButton/AvePurchaseActivityIndicatorView.h -------------------------------------------------------------------------------- /Source/PurchaseButton/AvePurchaseActivityIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Source/PurchaseButton/AvePurchaseActivityIndicatorView.m -------------------------------------------------------------------------------- /Source/PurchaseButton/AvePurchaseButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Source/PurchaseButton/AvePurchaseButton.h -------------------------------------------------------------------------------- /Source/PurchaseButton/AvePurchaseButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasVerhoeven/AvePurchaseButton/HEAD/Source/PurchaseButton/AvePurchaseButton.m --------------------------------------------------------------------------------