[Add] DocumentReaderMRZStage 7.5.10959
[CocoaPods.git] / Specs / e / b / 9 / ImageSequance / 0.0.1 / ImageSequance.podspec.json
blobf0d10c423e484dd8f8fa0b1210d3c641a6e01bac
2   "name": "ImageSequance",
3   "version": "0.0.1",
4   "summary": "Universal image sequance animation library for iOS, tvOS, macOS and watchOS.",
5   "description": "ImageSequance\n===\n\nUniversal image sequance animation library for iOS, tvOS, macOS and watchOS.\n\n\nInstall\n----\n\n```\nuse_frameworks!\npod 'ImageSequance'\n```\n\nUsage\n----\n\n* Setup your images sequance naming. For example if you have 10 images than your images should named like `frame-0` to `frame-9`.\n* Craete a sequance with naming and sequance range or directly image array.\n* Call `play(sequance:)` function on `UIImageView`, `NSImageView` or `WKInterfaceImage`.\n* Call `stopAnimating()` function to stop animation\n* You could also set `repeatCount` property on sequance. Set 0 for infinite repeat.\n* And `duration` property to control sequance duration.\n\n```\nlet imageSequance = ImageSequance(\nname: \"frame-\",\nsequance: 0...9) // Int array or 0, 1, ..., 9 syntax will also work.\nimageSequance.repeatCount = 0 // infinite repeat\nimageView.play(sequance: imageSequance)\n```",
6   "homepage": "https://github.com/cemolcay/ImageSequance",
7   "license": "MIT",
8   "authors": {
9     "cemolcay": "ccemolcay@gmail.com"
10   },
11   "platforms": {
12     "ios": "8.0",
13     "osx": "10.9",
14     "watchos": "2.0",
15     "tvos": "9.0"
16   },
17   "source": {
18     "git": "https://github.com/cemolcay/ImageSequance.git",
19     "tag": "0.0.1"
20   },
21   "source_files": "Source/*.swift",
22   "requires_arc": true,
23   "pushed_with_swift_version": "3.0"