├── .gitignore ├── Example ├── ExampleAnimation.gif └── INSImageViewExample │ ├── INSImageViewExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── INSImageViewExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── pineapple.imageset │ │ ├── Contents.json │ │ ├── pineapple.jpg │ │ ├── pineapple@2x.jpg │ │ └── pineapple@3x.jpg │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ └── ViewController.swift ├── INSImageView.podspec ├── LICENSE ├── Pod └── INSImageView.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/ExampleAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/ExampleAnimation.gif -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/pineapple.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/pineapple.imageset/Contents.json -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/pineapple.imageset/pineapple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/pineapple.imageset/pineapple.jpg -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/pineapple.imageset/pineapple@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/pineapple.imageset/pineapple@2x.jpg -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/pineapple.imageset/pineapple@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample/Assets.xcassets/pineapple.imageset/pineapple@3x.jpg -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample/Info.plist -------------------------------------------------------------------------------- /Example/INSImageViewExample/INSImageViewExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Example/INSImageViewExample/INSImageViewExample/ViewController.swift -------------------------------------------------------------------------------- /INSImageView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/INSImageView.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/INSImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/Pod/INSImageView.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instilio/INSImageView/HEAD/README.md --------------------------------------------------------------------------------