├── .DS_Store ├── .gitignore ├── Example ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── inception.imageset │ │ ├── Contents.json │ │ └── inception.jpg │ ├── interstellar.imageset │ │ ├── Contents.json │ │ └── interstellar.jpg │ ├── joker.imageset │ │ ├── Contents.json │ │ └── joker.jpg │ ├── qr.imageset │ │ ├── Contents.json │ │ └── qee.png │ └── soldout.imageset │ │ ├── Contents.json │ │ └── soldout.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Model │ └── TicketModel.swift ├── TicketVC │ ├── .DS_Store │ ├── Cell │ │ ├── TicketCell.swift │ │ └── TicketCell.xib │ ├── TicketVC.swift │ └── TicketVC.xib └── ViewController.swift ├── LICENSE ├── README.md ├── TicketKit.podspec ├── TicketKit.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── TicketKit ├── .DS_Store ├── Info.plist ├── TicketKit.h ├── TicketKit.swift └── TicketKit.xib ├── TicketKitDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── TicketKitDemo.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist └── TicketKitTests ├── .DS_Store ├── Info.plist └── TicketKitTests.swift /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/.DS_Store -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/inception.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/inception.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/inception.imageset/inception.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/inception.imageset/inception.jpg -------------------------------------------------------------------------------- /Example/Assets.xcassets/interstellar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/interstellar.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/interstellar.imageset/interstellar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/interstellar.imageset/interstellar.jpg -------------------------------------------------------------------------------- /Example/Assets.xcassets/joker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/joker.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/joker.imageset/joker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/joker.imageset/joker.jpg -------------------------------------------------------------------------------- /Example/Assets.xcassets/qr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/qr.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/qr.imageset/qee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/qr.imageset/qee.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/soldout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/soldout.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/soldout.imageset/soldout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Assets.xcassets/soldout.imageset/soldout.png -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/Model/TicketModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/Model/TicketModel.swift -------------------------------------------------------------------------------- /Example/TicketVC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/TicketVC/.DS_Store -------------------------------------------------------------------------------- /Example/TicketVC/Cell/TicketCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/TicketVC/Cell/TicketCell.swift -------------------------------------------------------------------------------- /Example/TicketVC/Cell/TicketCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/TicketVC/Cell/TicketCell.xib -------------------------------------------------------------------------------- /Example/TicketVC/TicketVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/TicketVC/TicketVC.swift -------------------------------------------------------------------------------- /Example/TicketVC/TicketVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/TicketVC/TicketVC.xib -------------------------------------------------------------------------------- /Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/Example/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/README.md -------------------------------------------------------------------------------- /TicketKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKit.podspec -------------------------------------------------------------------------------- /TicketKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TicketKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TicketKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TicketKit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKit/.DS_Store -------------------------------------------------------------------------------- /TicketKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKit/Info.plist -------------------------------------------------------------------------------- /TicketKit/TicketKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKit/TicketKit.h -------------------------------------------------------------------------------- /TicketKit/TicketKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKit/TicketKit.swift -------------------------------------------------------------------------------- /TicketKit/TicketKit.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKit/TicketKit.xib -------------------------------------------------------------------------------- /TicketKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TicketKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TicketKitDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKitDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TicketKitDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKitDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TicketKitDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKitDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TicketKitTests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKitTests/.DS_Store -------------------------------------------------------------------------------- /TicketKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKitTests/Info.plist -------------------------------------------------------------------------------- /TicketKitTests/TicketKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiskender2/TicketKit/HEAD/TicketKitTests/TicketKitTests.swift --------------------------------------------------------------------------------