[Add] ZJSDK 2.5.4.14
[CocoaPods.git] / Specs / 7 / 4 / 1 / WizardViewController / 1.0.0 / WizardViewController.podspec.json
blob771ecb76ee362c283e5e1bccdddd996373db35bf
2   "name": "WizardViewController",
3   "version": "1.0.0",
4   "summary": "An abstract view controller for sliding pages.",
5   "description": "Build your tutorial / description / informative screens by trivial approach.\nSetup visual assets and be flexible with page delegation.\n\n```swift\nlet wizardVC = WizardViewController()\n\n// setup page indicators\nwizardVC.pageIndicatorColors = { currentPageIndex in\nlet value: UIColor\nswitch currentPageIndex {\ncase 1: value = .darkGray\ncase 2: value = .gray\ndefault: value = .black\n}\n\nreturn (nil, value)\n}\n\n// set view controllers\nwizardVC.setViewControllers([A(), A(), A(), A()])\n// or\n// set views\nwizardVC.setViews([B(), B(), B()])\n\naddChildViewController(_wizardVC)\n_wizardVC.didMove(toParentViewController: self)\nview.addSubview(_wizardVC.view)\n```",
6   "homepage": "https://github.com/dimpiax/WizardViewController",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Pilipenko Dima": "dimpiax@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/dimpiax/WizardViewController.git",
16     "tag": "1.0.0"
17   },
18   "social_media_url": "https://twitter.com/dimpiax",
19   "platforms": {
20     "ios": "8.0"
21   },
22   "source_files": "WizardViewController/Classes/**/*",
23   "pushed_with_swift_version": "3.0"