├── .gitignore ├── .swift-version ├── .travis.yml ├── CLImagePopUp.gif ├── CLImageViewPopup.podspec ├── CLImageViewPopup ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── CLImageViewPopup.swift ├── Example ├── CLImageViewPopup.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CLImageViewPopup-Example.xcscheme ├── CLImageViewPopup.xcworkspace │ └── contents.xcworkspacedata ├── CLImageViewPopup │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── people.imageset │ │ │ ├── Contents.json │ │ │ └── people.png │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── CLImageViewPopup.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── CLImageViewPopup.xcscheme │ └── Target Support Files │ │ ├── CLImageViewPopup │ │ ├── CLImageViewPopup-dummy.m │ │ ├── CLImageViewPopup-prefix.pch │ │ ├── CLImageViewPopup-umbrella.h │ │ ├── CLImageViewPopup.modulemap │ │ ├── CLImageViewPopup.xcconfig │ │ └── Info.plist │ │ ├── Pods-CLImageViewPopup_Example │ │ ├── Info.plist │ │ ├── Pods-CLImageViewPopup_Example-acknowledgements.markdown │ │ ├── Pods-CLImageViewPopup_Example-acknowledgements.plist │ │ ├── Pods-CLImageViewPopup_Example-dummy.m │ │ ├── Pods-CLImageViewPopup_Example-frameworks.sh │ │ ├── Pods-CLImageViewPopup_Example-resources.sh │ │ ├── Pods-CLImageViewPopup_Example-umbrella.h │ │ ├── Pods-CLImageViewPopup_Example.debug.xcconfig │ │ ├── Pods-CLImageViewPopup_Example.modulemap │ │ └── Pods-CLImageViewPopup_Example.release.xcconfig │ │ └── Pods-CLImageViewPopup_Tests │ │ ├── Info.plist │ │ ├── Pods-CLImageViewPopup_Tests-acknowledgements.markdown │ │ ├── Pods-CLImageViewPopup_Tests-acknowledgements.plist │ │ ├── Pods-CLImageViewPopup_Tests-dummy.m │ │ ├── Pods-CLImageViewPopup_Tests-frameworks.sh │ │ ├── Pods-CLImageViewPopup_Tests-resources.sh │ │ ├── Pods-CLImageViewPopup_Tests-umbrella.h │ │ ├── Pods-CLImageViewPopup_Tests.debug.xcconfig │ │ ├── Pods-CLImageViewPopup_Tests.modulemap │ │ └── Pods-CLImageViewPopup_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/.travis.yml -------------------------------------------------------------------------------- /CLImagePopUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/CLImagePopUp.gif -------------------------------------------------------------------------------- /CLImageViewPopup.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/CLImageViewPopup.podspec -------------------------------------------------------------------------------- /CLImageViewPopup/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CLImageViewPopup/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CLImageViewPopup/Classes/CLImageViewPopup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/CLImageViewPopup/Classes/CLImageViewPopup.swift -------------------------------------------------------------------------------- /Example/CLImageViewPopup.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CLImageViewPopup.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CLImageViewPopup.xcodeproj/xcshareddata/xcschemes/CLImageViewPopup-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup.xcodeproj/xcshareddata/xcschemes/CLImageViewPopup-Example.xcscheme -------------------------------------------------------------------------------- /Example/CLImageViewPopup.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CLImageViewPopup/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Images.xcassets/people.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup/Images.xcassets/people.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Images.xcassets/people.imageset/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup/Images.xcassets/people.imageset/people.png -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup/Info.plist -------------------------------------------------------------------------------- /Example/CLImageViewPopup/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/CLImageViewPopup/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CLImageViewPopup.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Local Podspecs/CLImageViewPopup.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/CLImageViewPopup.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/CLImageViewPopup.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/CLImageViewPopup/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------