├── .gitignore ├── FVSeatsPicker.podspec ├── FVSeatsPicker.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── FVSeatsPicker.xcscheme ├── FVSeatsPicker.xcworkspace └── contents.xcworkspacedata ├── FVSeatsPicker ├── FVSeatItem.h ├── FVSeatItem.m ├── FVSeatsPicker.bundle │ ├── Root.plist │ ├── en.lproj │ │ └── Root.strings │ ├── seat_available@2x.png │ ├── seat_disabled@2x.png │ └── seat_selected@2x.png ├── FVSeatsPicker.h ├── FVSeatsPicker.m ├── FVSeatsPickerIndexView.h └── FVSeatsPickerIndexView.m ├── FVSeatsPickerDemo ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── seat_available.imageset │ │ ├── Contents.json │ │ ├── seat_available@2x.png │ │ └── seat_available@3x.png │ ├── seat_selected.imageset │ │ ├── Contents.json │ │ ├── seat_selected@2x.png │ │ └── seat_selected@3x.png │ └── seat_unavailable.imageset │ │ ├── Contents.json │ │ ├── seat_disabled@2x.png │ │ └── seat_disabled@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Classes │ ├── Category │ │ ├── NSDictionary+FVExtension.h │ │ ├── NSDictionary+FVExtension.m │ │ ├── UIColor+FVExtension.h │ │ └── UIColor+FVExtension.m │ ├── Controller │ │ ├── FVSeatsViewController.h │ │ ├── FVSeatsViewController.m │ │ ├── FVViewController.h │ │ └── FVViewController.m │ ├── Others │ │ ├── FVAppDelegate.h │ │ └── FVAppDelegate.m │ └── View │ │ ├── FVSeatsTitleView.h │ │ ├── FVSeatsTitleView.m │ │ └── FVSeatsTitleView.xib ├── Info.plist ├── districtOne.plist ├── districtTwo.plist └── main.m ├── FVSeatsPickerTests ├── FVSeatsPickerTests.m └── Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── FVSeatsPicker │ ├── FVSeatsPicker │ │ ├── FVSeatItem.h │ │ ├── FVSeatItem.m │ │ ├── FVSeatsPicker.bundle │ │ │ ├── seat_available@2x.png │ │ │ ├── seat_disabled@2x.png │ │ │ └── seat_selected@2x.png │ │ ├── FVSeatsPicker.h │ │ ├── FVSeatsPicker.m │ │ ├── FVSeatsPickerIndexView.h │ │ └── FVSeatsPickerIndexView.m │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ └── FVSeatsPicker │ │ │ ├── FVSeatItem.h │ │ │ ├── FVSeatsPicker.h │ │ │ └── FVSeatsPickerIndexView.h │ └── Public │ │ └── FVSeatsPicker │ │ ├── FVSeatItem.h │ │ ├── FVSeatsPicker.h │ │ └── FVSeatsPickerIndexView.h ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── FVSeatsPicker │ ├── FVSeatsPicker-dummy.m │ ├── FVSeatsPicker-prefix.pch │ └── FVSeatsPicker.xcconfig │ └── Pods-FVSeatsPicker │ ├── Pods-FVSeatsPicker-acknowledgements.markdown │ ├── Pods-FVSeatsPicker-acknowledgements.plist │ ├── Pods-FVSeatsPicker-dummy.m │ ├── Pods-FVSeatsPicker-frameworks.sh │ ├── Pods-FVSeatsPicker-resources.sh │ ├── Pods-FVSeatsPicker.debug.xcconfig │ └── Pods-FVSeatsPicker.release.xcconfig ├── README.md └── image └── seats_picker.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/.gitignore -------------------------------------------------------------------------------- /FVSeatsPicker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker.podspec -------------------------------------------------------------------------------- /FVSeatsPicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FVSeatsPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FVSeatsPicker.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /FVSeatsPicker.xcodeproj/xcshareddata/xcschemes/FVSeatsPicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker.xcodeproj/xcshareddata/xcschemes/FVSeatsPicker.xcscheme -------------------------------------------------------------------------------- /FVSeatsPicker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatItem.h -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatItem.m -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatsPicker.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatsPicker.bundle/Root.plist -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatsPicker.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatsPicker.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatsPicker.bundle/seat_available@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatsPicker.bundle/seat_available@2x.png -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatsPicker.bundle/seat_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatsPicker.bundle/seat_disabled@2x.png -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatsPicker.bundle/seat_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatsPicker.bundle/seat_selected@2x.png -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatsPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatsPicker.h -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatsPicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatsPicker.m -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatsPickerIndexView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatsPickerIndexView.h -------------------------------------------------------------------------------- /FVSeatsPicker/FVSeatsPickerIndexView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPicker/FVSeatsPickerIndexView.m -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/seat_available.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/seat_available.imageset/Contents.json -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/seat_available.imageset/seat_available@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/seat_available.imageset/seat_available@2x.png -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/seat_available.imageset/seat_available@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/seat_available.imageset/seat_available@3x.png -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/seat_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/seat_selected.imageset/Contents.json -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/seat_selected.imageset/seat_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/seat_selected.imageset/seat_selected@2x.png -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/seat_selected.imageset/seat_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/seat_selected.imageset/seat_selected@3x.png -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/seat_unavailable.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/seat_unavailable.imageset/Contents.json -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/seat_unavailable.imageset/seat_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/seat_unavailable.imageset/seat_disabled@2x.png -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Assets.xcassets/seat_unavailable.imageset/seat_disabled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Assets.xcassets/seat_unavailable.imageset/seat_disabled@3x.png -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/Category/NSDictionary+FVExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/Category/NSDictionary+FVExtension.h -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/Category/NSDictionary+FVExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/Category/NSDictionary+FVExtension.m -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/Category/UIColor+FVExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/Category/UIColor+FVExtension.h -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/Category/UIColor+FVExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/Category/UIColor+FVExtension.m -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/Controller/FVSeatsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/Controller/FVSeatsViewController.h -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/Controller/FVSeatsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/Controller/FVSeatsViewController.m -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/Controller/FVViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/Controller/FVViewController.h -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/Controller/FVViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/Controller/FVViewController.m -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/Others/FVAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/Others/FVAppDelegate.h -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/Others/FVAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/Others/FVAppDelegate.m -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/View/FVSeatsTitleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/View/FVSeatsTitleView.h -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/View/FVSeatsTitleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/View/FVSeatsTitleView.m -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Classes/View/FVSeatsTitleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Classes/View/FVSeatsTitleView.xib -------------------------------------------------------------------------------- /FVSeatsPickerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/Info.plist -------------------------------------------------------------------------------- /FVSeatsPickerDemo/districtOne.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/districtOne.plist -------------------------------------------------------------------------------- /FVSeatsPickerDemo/districtTwo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/districtTwo.plist -------------------------------------------------------------------------------- /FVSeatsPickerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerDemo/main.m -------------------------------------------------------------------------------- /FVSeatsPickerTests/FVSeatsPickerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerTests/FVSeatsPickerTests.m -------------------------------------------------------------------------------- /FVSeatsPickerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/FVSeatsPickerTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/FVSeatsPicker/FVSeatItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/FVSeatsPicker/FVSeatItem.h -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/FVSeatsPicker/FVSeatItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/FVSeatsPicker/FVSeatItem.m -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.bundle/seat_available@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.bundle/seat_available@2x.png -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.bundle/seat_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.bundle/seat_disabled@2x.png -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.bundle/seat_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.bundle/seat_selected@2x.png -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.h -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.m -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPickerIndexView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPickerIndexView.h -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPickerIndexView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/FVSeatsPicker/FVSeatsPickerIndexView.m -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/LICENSE -------------------------------------------------------------------------------- /Pods/FVSeatsPicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/FVSeatsPicker/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/FVSeatsPicker/FVSeatItem.h: -------------------------------------------------------------------------------- 1 | ../../../FVSeatsPicker/FVSeatsPicker/FVSeatItem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FVSeatsPicker/FVSeatsPicker.h: -------------------------------------------------------------------------------- 1 | ../../../FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FVSeatsPicker/FVSeatsPickerIndexView.h: -------------------------------------------------------------------------------- 1 | ../../../FVSeatsPicker/FVSeatsPicker/FVSeatsPickerIndexView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FVSeatsPicker/FVSeatItem.h: -------------------------------------------------------------------------------- 1 | ../../../FVSeatsPicker/FVSeatsPicker/FVSeatItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FVSeatsPicker/FVSeatsPicker.h: -------------------------------------------------------------------------------- 1 | ../../../FVSeatsPicker/FVSeatsPicker/FVSeatsPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FVSeatsPicker/FVSeatsPickerIndexView.h: -------------------------------------------------------------------------------- 1 | ../../../FVSeatsPicker/FVSeatsPicker/FVSeatsPickerIndexView.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/FVSeatsPicker/FVSeatsPicker-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Target Support Files/FVSeatsPicker/FVSeatsPicker-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FVSeatsPicker/FVSeatsPicker-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Target Support Files/FVSeatsPicker/FVSeatsPicker-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FVSeatsPicker/FVSeatsPicker.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Target Support Files/FVSeatsPicker/FVSeatsPicker.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/Pods/Target Support Files/Pods-FVSeatsPicker/Pods-FVSeatsPicker.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/README.md -------------------------------------------------------------------------------- /image/seats_picker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iforvert/FVSeatsPicker/HEAD/image/seats_picker.gif --------------------------------------------------------------------------------