├── .gitignore ├── Icon.psd ├── LICENSE ├── PatronKit.podspec ├── PatronKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── Moshe.xcuserdatad │ └── xcschemes │ ├── PatronKit.xcscheme │ └── xcschememanagement.plist ├── PatronKit ├── Cells │ ├── PatronageOptionTableViewCell.swift │ └── PlainTextTableViewCell.swift ├── Custom Controls │ └── RoundedLabel.swift ├── Info.plist ├── LICENSE ├── PatronKit.h ├── PatronKit.podspec ├── PatronKitBlockTypes.swift ├── PatronManager.swift ├── PatronageCellSubtitleKind.swift ├── PatronageViewController.storyboard ├── PatronageViewController.swift └── README.md ├── PatronKitTests ├── Info.plist └── PatronKitTests.swift ├── README.md └── demo ├── App Icon [Rounded] ├── Icon-167.png ├── Icon-60.png ├── Icon-60@2x.png ├── Icon-60@3x.png ├── Icon-72.png ├── Icon-72@2x.png ├── Icon-76.png ├── Icon-76@2x.png ├── Icon-Small-40.png ├── Icon-Small-40@2x.png ├── Icon-Small-40@3x.png ├── Icon-Small-50.png ├── Icon-Small-50@2x.png ├── Icon-Small.png ├── Icon-Small@2x.png ├── Icon-Small@3x.png ├── Icon.png ├── Icon@2x.png └── iTunesArtwork@2x.png ├── CloudKit-small.png ├── CloudKit.png ├── InAppPurchases-small.png ├── InAppPurchases.png ├── Promo-small.png ├── Promo.png └── Promo.psd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/Icon.psd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/LICENSE -------------------------------------------------------------------------------- /PatronKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit.podspec -------------------------------------------------------------------------------- /PatronKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PatronKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PatronKit.xcodeproj/xcuserdata/Moshe.xcuserdatad/xcschemes/PatronKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit.xcodeproj/xcuserdata/Moshe.xcuserdatad/xcschemes/PatronKit.xcscheme -------------------------------------------------------------------------------- /PatronKit.xcodeproj/xcuserdata/Moshe.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit.xcodeproj/xcuserdata/Moshe.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PatronKit/Cells/PatronageOptionTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/Cells/PatronageOptionTableViewCell.swift -------------------------------------------------------------------------------- /PatronKit/Cells/PlainTextTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/Cells/PlainTextTableViewCell.swift -------------------------------------------------------------------------------- /PatronKit/Custom Controls/RoundedLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/Custom Controls/RoundedLabel.swift -------------------------------------------------------------------------------- /PatronKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/Info.plist -------------------------------------------------------------------------------- /PatronKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/LICENSE -------------------------------------------------------------------------------- /PatronKit/PatronKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/PatronKit.h -------------------------------------------------------------------------------- /PatronKit/PatronKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/PatronKit.podspec -------------------------------------------------------------------------------- /PatronKit/PatronKitBlockTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/PatronKitBlockTypes.swift -------------------------------------------------------------------------------- /PatronKit/PatronManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/PatronManager.swift -------------------------------------------------------------------------------- /PatronKit/PatronageCellSubtitleKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/PatronageCellSubtitleKind.swift -------------------------------------------------------------------------------- /PatronKit/PatronageViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/PatronageViewController.storyboard -------------------------------------------------------------------------------- /PatronKit/PatronageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/PatronageViewController.swift -------------------------------------------------------------------------------- /PatronKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKit/README.md -------------------------------------------------------------------------------- /PatronKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKitTests/Info.plist -------------------------------------------------------------------------------- /PatronKitTests/PatronKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/PatronKitTests/PatronKitTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/README.md -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-167.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-60.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-60@2x.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-60@3x.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-72.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-72@2x.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-76.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-76@2x.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-Small-40.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-Small-50.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-Small.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-Small@2x.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon-Small@3x.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/Icon@2x.png -------------------------------------------------------------------------------- /demo/App Icon [Rounded]/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/App Icon [Rounded]/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /demo/CloudKit-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/CloudKit-small.png -------------------------------------------------------------------------------- /demo/CloudKit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/CloudKit.png -------------------------------------------------------------------------------- /demo/InAppPurchases-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/InAppPurchases-small.png -------------------------------------------------------------------------------- /demo/InAppPurchases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/InAppPurchases.png -------------------------------------------------------------------------------- /demo/Promo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/Promo-small.png -------------------------------------------------------------------------------- /demo/Promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/Promo.png -------------------------------------------------------------------------------- /demo/Promo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MosheBerman/PatronKit/HEAD/demo/Promo.psd --------------------------------------------------------------------------------