├── .gitignore ├── Demo ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ViewController.h │ └── ViewController.m ├── Default-568h@2x.png ├── Localizable.strings ├── MainWindow.xib ├── Resources-iPad │ └── MainWindow-iPad.xib ├── VXWalkthrough-Info.plist ├── VXWalkthrough.xcodeproj │ └── project.pbxproj ├── VXWalkthrough │ └── Images.xcassets │ │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_120.png │ │ ├── icon_152.png │ │ ├── icon_167.png │ │ └── icon_76.png │ │ └── LaunchImage.launchimage │ │ └── Contents.json ├── VXWalkthrough_Prefix.pch ├── ViewController.xib ├── images │ ├── icon_120.png │ ├── icon_152.png │ ├── icon_167.png │ ├── icon_76.png │ └── walkthrough │ │ ├── walkthrough_0.png │ │ ├── walkthrough_1.png │ │ └── walkthrough_2.png └── main.m ├── LICENSE ├── README.md ├── VXWalkthroughViewController.podspec ├── VXWalkthroughViewController ├── VXWalkthroughController.bundle │ ├── VXWalkthroughViewControllerLeftArrow@2x.png │ ├── VXWalkthroughViewControllerRightArrow@2x.png │ ├── VXWalkthroughViewControllerScan@2x.png │ └── walkthrough_0.png ├── VXWalkthroughPageActionViewController.h ├── VXWalkthroughPageActionViewController.m ├── VXWalkthroughPageLoginViewController.h ├── VXWalkthroughPageLoginViewController.m ├── VXWalkthroughPagePickerViewController.h ├── VXWalkthroughPagePickerViewController.m ├── VXWalkthroughPageSignupViewController.h ├── VXWalkthroughPageSignupViewController.m ├── VXWalkthroughPageViewController.h ├── VXWalkthroughPageViewController.m ├── VXWalkthroughViewController.h ├── VXWalkthroughViewController.m └── VXWalkthroughViewController.storyboard ├── info.txt └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Demo/Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/Classes/AppDelegate.m -------------------------------------------------------------------------------- /Demo/Classes/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/Classes/ViewController.h -------------------------------------------------------------------------------- /Demo/Classes/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/Classes/ViewController.m -------------------------------------------------------------------------------- /Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/Localizable.strings -------------------------------------------------------------------------------- /Demo/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/MainWindow.xib -------------------------------------------------------------------------------- /Demo/Resources-iPad/MainWindow-iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/Resources-iPad/MainWindow-iPad.xib -------------------------------------------------------------------------------- /Demo/VXWalkthrough-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/VXWalkthrough-Info.plist -------------------------------------------------------------------------------- /Demo/VXWalkthrough.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/VXWalkthrough.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/VXWalkthrough/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/VXWalkthrough/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/VXWalkthrough/Images.xcassets/AppIcon.appiconset/icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/VXWalkthrough/Images.xcassets/AppIcon.appiconset/icon_120.png -------------------------------------------------------------------------------- /Demo/VXWalkthrough/Images.xcassets/AppIcon.appiconset/icon_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/VXWalkthrough/Images.xcassets/AppIcon.appiconset/icon_152.png -------------------------------------------------------------------------------- /Demo/VXWalkthrough/Images.xcassets/AppIcon.appiconset/icon_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/VXWalkthrough/Images.xcassets/AppIcon.appiconset/icon_167.png -------------------------------------------------------------------------------- /Demo/VXWalkthrough/Images.xcassets/AppIcon.appiconset/icon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/VXWalkthrough/Images.xcassets/AppIcon.appiconset/icon_76.png -------------------------------------------------------------------------------- /Demo/VXWalkthrough/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/VXWalkthrough/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Demo/VXWalkthrough_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/VXWalkthrough_Prefix.pch -------------------------------------------------------------------------------- /Demo/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/ViewController.xib -------------------------------------------------------------------------------- /Demo/images/icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/images/icon_120.png -------------------------------------------------------------------------------- /Demo/images/icon_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/images/icon_152.png -------------------------------------------------------------------------------- /Demo/images/icon_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/images/icon_167.png -------------------------------------------------------------------------------- /Demo/images/icon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/images/icon_76.png -------------------------------------------------------------------------------- /Demo/images/walkthrough/walkthrough_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/images/walkthrough/walkthrough_0.png -------------------------------------------------------------------------------- /Demo/images/walkthrough/walkthrough_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/images/walkthrough/walkthrough_1.png -------------------------------------------------------------------------------- /Demo/images/walkthrough/walkthrough_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/images/walkthrough/walkthrough_2.png -------------------------------------------------------------------------------- /Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/Demo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/README.md -------------------------------------------------------------------------------- /VXWalkthroughViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController.podspec -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughController.bundle/VXWalkthroughViewControllerLeftArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughController.bundle/VXWalkthroughViewControllerLeftArrow@2x.png -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughController.bundle/VXWalkthroughViewControllerRightArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughController.bundle/VXWalkthroughViewControllerRightArrow@2x.png -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughController.bundle/VXWalkthroughViewControllerScan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughController.bundle/VXWalkthroughViewControllerScan@2x.png -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughController.bundle/walkthrough_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughController.bundle/walkthrough_0.png -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughPageActionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughPageActionViewController.h -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughPageActionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughPageActionViewController.m -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughPageLoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughPageLoginViewController.h -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughPageLoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughPageLoginViewController.m -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughPagePickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughPagePickerViewController.h -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughPagePickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughPagePickerViewController.m -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughPageSignupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughPageSignupViewController.h -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughPageSignupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughPageSignupViewController.m -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughPageViewController.h -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughPageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughPageViewController.m -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughViewController.h -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughViewController.m -------------------------------------------------------------------------------- /VXWalkthroughViewController/VXWalkthroughViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/VXWalkthroughViewController/VXWalkthroughViewController.storyboard -------------------------------------------------------------------------------- /info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/info.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftmanagementag/VXWalkthroughViewController/HEAD/screenshot.png --------------------------------------------------------------------------------