├── .gitignore ├── .travis.yml ├── Classes ├── UIImage+Sprite.h └── UIImage+Sprite.m ├── LICENSE ├── README.mdown ├── SpriteAnimationDemo ├── SpriteAnimationDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── SpriteAnimationDemo.xccheckout │ │ └── xcuserdata │ │ │ ├── r3n.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── rafalsroka.xcuserdatad │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ ├── r3n.xcuserdatad │ │ └── xcschemes │ │ │ ├── SpriteAnimationDemo.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── rafalsroka.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── SpriteAnimationDemo.xcscheme │ │ └── xcschememanagement.plist └── SpriteAnimationDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── LaunchImage.launchimage │ │ └── Contents.json │ ├── explosions.imageset │ │ ├── Contents.json │ │ └── explosions.png │ └── explosions_debug.imageset │ │ ├── Contents.json │ │ └── explosions_debug.png │ ├── MasterViewController.h │ ├── MasterViewController.m │ ├── SpriteAnimationDemo-Info.plist │ ├── SpriteAnimationDemo-Prefix.pch │ ├── UIImage+Sprite.h │ ├── UIImage+Sprite.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MasterViewController.xib │ ├── explosions.png │ ├── explosions_debug.png │ └── main.m └── UIImage+SpriteAdditions.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/.travis.yml -------------------------------------------------------------------------------- /Classes/UIImage+Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/Classes/UIImage+Sprite.h -------------------------------------------------------------------------------- /Classes/UIImage+Sprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/Classes/UIImage+Sprite.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/README.mdown -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.xcworkspace/xcshareddata/SpriteAnimationDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.xcworkspace/xcshareddata/SpriteAnimationDemo.xccheckout -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.xcworkspace/xcuserdata/r3n.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.xcworkspace/xcuserdata/r3n.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.xcworkspace/xcuserdata/r3n.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.xcworkspace/xcuserdata/r3n.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.xcworkspace/xcuserdata/rafalsroka.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/project.xcworkspace/xcuserdata/rafalsroka.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/xcuserdata/r3n.xcuserdatad/xcschemes/SpriteAnimationDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/xcuserdata/r3n.xcuserdatad/xcschemes/SpriteAnimationDemo.xcscheme -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/xcuserdata/r3n.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/xcuserdata/r3n.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/xcuserdata/rafalsroka.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/xcuserdata/rafalsroka.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/xcuserdata/rafalsroka.xcuserdatad/xcschemes/SpriteAnimationDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/xcuserdata/rafalsroka.xcuserdatad/xcschemes/SpriteAnimationDemo.xcscheme -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/xcuserdata/rafalsroka.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo.xcodeproj/xcuserdata/rafalsroka.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/AppDelegate.h -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/AppDelegate.m -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/explosions.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/explosions.imageset/Contents.json -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/explosions.imageset/explosions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/explosions.imageset/explosions.png -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/explosions_debug.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/explosions_debug.imageset/Contents.json -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/explosions_debug.imageset/explosions_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/Images.xcassets/explosions_debug.imageset/explosions_debug.png -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/MasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/MasterViewController.h -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/MasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/MasterViewController.m -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/SpriteAnimationDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/SpriteAnimationDemo-Info.plist -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/SpriteAnimationDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/SpriteAnimationDemo-Prefix.pch -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/UIImage+Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/UIImage+Sprite.h -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/UIImage+Sprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/UIImage+Sprite.m -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/en.lproj/MasterViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/en.lproj/MasterViewController.xib -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/explosions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/explosions.png -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/explosions_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/explosions_debug.png -------------------------------------------------------------------------------- /SpriteAnimationDemo/SpriteAnimationDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/SpriteAnimationDemo/SpriteAnimationDemo/main.m -------------------------------------------------------------------------------- /UIImage+SpriteAdditions.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/sprite-additions/HEAD/UIImage+SpriteAdditions.podspec --------------------------------------------------------------------------------