2 "name": "ImageSequance",
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",
9 "cemolcay": "ccemolcay@gmail.com"
18 "git": "https://github.com/cemolcay/ImageSequance.git",
21 "source_files": "Source/*.swift",
23 "pushed_with_swift_version": "3.0"