├── .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: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode8 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -workspace Example/CLImageViewPopup.xcworkspace -scheme CLImageViewPopup-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /CLImagePopUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/041bafd783c17a85bdf9de2bc38aed832e530ec1/CLImagePopUp.gif -------------------------------------------------------------------------------- /CLImageViewPopup.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint CLImageViewPopup.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = "CLImageViewPopup" 11 | s.version = "0.1.1" 12 | s.summary = "A simple Image View when tapped, pops up to full screen." 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | TODO: Add long description of the pod here. A simple Image View to be tapped to make it full screen. 22 | DESC 23 | 24 | s.homepage = "https://github.com/vinbhai4u/CLImageViewPopup" 25 | # s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" 26 | s.license = 'MIT' 27 | s.author = { "Vineeth Vijayan" => "vinbhai4u@gmail.com" } 28 | s.source = { :git => "https://github.com/vinbhai4u/CLImageViewPopup.git", :tag => s.version.to_s } 29 | s.social_media_url = 'https://twitter.com/vinbhai4u' 30 | 31 | s.ios.deployment_target = '8.0' 32 | 33 | s.source_files = 'CLImageViewPopup/Classes/**/*' 34 | 35 | # s.resource_bundles = { 36 | # 'CLImageViewPopup' => ['CLImageViewPopup/Assets/*.png'] 37 | # } 38 | 39 | # s.public_header_files = 'Pod/Classes/**/*.h' 40 | # s.frameworks = 'UIKit', 'MapKit' 41 | # s.dependency 'AFNetworking', '~> 2.3' 42 | end 43 | -------------------------------------------------------------------------------- /CLImageViewPopup/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/041bafd783c17a85bdf9de2bc38aed832e530ec1/CLImageViewPopup/Assets/.gitkeep -------------------------------------------------------------------------------- /CLImageViewPopup/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/041bafd783c17a85bdf9de2bc38aed832e530ec1/CLImageViewPopup/Classes/.gitkeep -------------------------------------------------------------------------------- /CLImageViewPopup/Classes/CLImageViewPopup.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CLImageViewPopup.swift 3 | // poplearning 4 | // 5 | // Created by Vineeth Vijayan on 01/05/16. 6 | // Copyright © 2016 creativelogics. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class CLImageViewPopup: UIImageView { 12 | var tempRect: CGRect? 13 | var bgView: UIView! 14 | 15 | var animated: Bool = true 16 | var intDuration = 0.25 17 | //MARK: Life cycle 18 | override func draw(_ rect: CGRect) { 19 | super.draw(rect) 20 | } 21 | 22 | override init(frame: CGRect) { 23 | super.init(frame: frame) 24 | } 25 | 26 | required init?(coder aDecoder: NSCoder) { 27 | super.init(coder: aDecoder) 28 | let tapGesture = UITapGestureRecognizer(target: self, action: #selector(CLImageViewPopup.popUpImageToFullScreen)) 29 | self.addGestureRecognizer(tapGesture) 30 | self.isUserInteractionEnabled = true 31 | // fatalError("init(coder:) has not been implemented") 32 | } 33 | 34 | //MARK: Actions of Gestures 35 | func exitFullScreen () { 36 | let imageV = bgView.subviews[0] as! UIImageView 37 | 38 | UIView.animate(withDuration: intDuration, animations: { 39 | imageV.frame = self.tempRect! 40 | self.bgView.alpha = 0 41 | }, completion: { (bol) in 42 | self.bgView.removeFromSuperview() 43 | }) 44 | } 45 | 46 | func popUpImageToFullScreen() { 47 | 48 | if let window = UIApplication.shared.delegate?.window { 49 | let parentView = self.findParentViewController(self)!.view 50 | 51 | bgView = UIView(frame: UIScreen.main.bounds) 52 | bgView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(CLImageViewPopup.exitFullScreen))) 53 | bgView.alpha = 0 54 | bgView.backgroundColor = UIColor.black 55 | let imageV = UIImageView(image: self.image) 56 | let point = self.convert(self.bounds, to: parentView) 57 | imageV.frame = point 58 | tempRect = point 59 | imageV.contentMode = .scaleAspectFit 60 | self.bgView.addSubview(imageV) 61 | window?.addSubview(bgView) 62 | 63 | if animated { 64 | UIView.animate(withDuration: intDuration, animations: { 65 | self.bgView.alpha = 1 66 | imageV.frame = CGRect(x: 0, y: 0, width: (parentView?.frame.width)!, height: (parentView?.frame.width)!) 67 | imageV.center = (parentView?.center)! 68 | }) 69 | } 70 | } 71 | } 72 | 73 | func findParentViewController(_ view: UIView) -> UIViewController? { 74 | var parentResponder: UIResponder? = self 75 | while parentResponder != nil { 76 | parentResponder = parentResponder!.next 77 | if let viewController = parentResponder as? UIViewController { 78 | return viewController 79 | } 80 | } 81 | return nil 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /Example/CLImageViewPopup.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 2300B419C64CB7A035C5F324 /* Pods_CLImageViewPopup_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4838D55266827065BFFBA13 /* Pods_CLImageViewPopup_Tests.framework */; }; 11 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 12 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 13 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 14 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 15 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 16 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 17 | 877F2042D2F1C9DCA6D5B008 /* Pods_CLImageViewPopup_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE83FFC065084B4631F97B34 /* Pods_CLImageViewPopup_Example.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = CLImageViewPopup; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 0DFAD5A0F311D91CBC5761F6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 32 | 27D689F8B477B67B3D9AC552 /* Pods-CLImageViewPopup_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CLImageViewPopup_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.release.xcconfig"; sourceTree = ""; }; 33 | 3B6700BEC082901560F4F7CA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 34 | 607FACD01AFB9204008FA782 /* CLImageViewPopup_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CLImageViewPopup_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 36 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 38 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 39 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 40 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 41 | 607FACE51AFB9204008FA782 /* CLImageViewPopup_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CLImageViewPopup_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 43 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 44 | 8E18D3DA240DCA6366DD74D4 /* Pods-CLImageViewPopup_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CLImageViewPopup_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.release.xcconfig"; sourceTree = ""; }; 45 | 9EEEB5BCB5EF8ACBD68A637B /* Pods-CLImageViewPopup_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CLImageViewPopup_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.debug.xcconfig"; sourceTree = ""; }; 46 | B4838D55266827065BFFBA13 /* Pods_CLImageViewPopup_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CLImageViewPopup_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | CE83FFC065084B4631F97B34 /* Pods_CLImageViewPopup_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CLImageViewPopup_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | D99AA55AA5C15058623C3392 /* Pods-CLImageViewPopup_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CLImageViewPopup_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.debug.xcconfig"; sourceTree = ""; }; 49 | FACA58EBCDEB56A99928B56D /* CLImageViewPopup.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CLImageViewPopup.podspec; path = ../CLImageViewPopup.podspec; sourceTree = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 877F2042D2F1C9DCA6D5B008 /* Pods_CLImageViewPopup_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | 2300B419C64CB7A035C5F324 /* Pods_CLImageViewPopup_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 011D8A54BE536B6E59C82E9E /* Frameworks */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | CE83FFC065084B4631F97B34 /* Pods_CLImageViewPopup_Example.framework */, 76 | B4838D55266827065BFFBA13 /* Pods_CLImageViewPopup_Tests.framework */, 77 | ); 78 | name = Frameworks; 79 | sourceTree = ""; 80 | }; 81 | 607FACC71AFB9204008FA782 = { 82 | isa = PBXGroup; 83 | children = ( 84 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 85 | 607FACD21AFB9204008FA782 /* Example for CLImageViewPopup */, 86 | 607FACE81AFB9204008FA782 /* Tests */, 87 | 607FACD11AFB9204008FA782 /* Products */, 88 | D908F2FD2174A6A3FD458806 /* Pods */, 89 | 011D8A54BE536B6E59C82E9E /* Frameworks */, 90 | ); 91 | sourceTree = ""; 92 | }; 93 | 607FACD11AFB9204008FA782 /* Products */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 607FACD01AFB9204008FA782 /* CLImageViewPopup_Example.app */, 97 | 607FACE51AFB9204008FA782 /* CLImageViewPopup_Tests.xctest */, 98 | ); 99 | name = Products; 100 | sourceTree = ""; 101 | }; 102 | 607FACD21AFB9204008FA782 /* Example for CLImageViewPopup */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 106 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 107 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 108 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 109 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 110 | 607FACD31AFB9204008FA782 /* Supporting Files */, 111 | ); 112 | name = "Example for CLImageViewPopup"; 113 | path = CLImageViewPopup; 114 | sourceTree = ""; 115 | }; 116 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 117 | isa = PBXGroup; 118 | children = ( 119 | 607FACD41AFB9204008FA782 /* Info.plist */, 120 | ); 121 | name = "Supporting Files"; 122 | sourceTree = ""; 123 | }; 124 | 607FACE81AFB9204008FA782 /* Tests */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 128 | 607FACE91AFB9204008FA782 /* Supporting Files */, 129 | ); 130 | path = Tests; 131 | sourceTree = ""; 132 | }; 133 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 607FACEA1AFB9204008FA782 /* Info.plist */, 137 | ); 138 | name = "Supporting Files"; 139 | sourceTree = ""; 140 | }; 141 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | FACA58EBCDEB56A99928B56D /* CLImageViewPopup.podspec */, 145 | 0DFAD5A0F311D91CBC5761F6 /* README.md */, 146 | 3B6700BEC082901560F4F7CA /* LICENSE */, 147 | ); 148 | name = "Podspec Metadata"; 149 | sourceTree = ""; 150 | }; 151 | D908F2FD2174A6A3FD458806 /* Pods */ = { 152 | isa = PBXGroup; 153 | children = ( 154 | D99AA55AA5C15058623C3392 /* Pods-CLImageViewPopup_Example.debug.xcconfig */, 155 | 27D689F8B477B67B3D9AC552 /* Pods-CLImageViewPopup_Example.release.xcconfig */, 156 | 9EEEB5BCB5EF8ACBD68A637B /* Pods-CLImageViewPopup_Tests.debug.xcconfig */, 157 | 8E18D3DA240DCA6366DD74D4 /* Pods-CLImageViewPopup_Tests.release.xcconfig */, 158 | ); 159 | name = Pods; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* CLImageViewPopup_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CLImageViewPopup_Example" */; 168 | buildPhases = ( 169 | 4EED3C9E1BA164051BF90520 /* 📦 Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | 3C645113716E992B6DBC262B /* 📦 Embed Pods Frameworks */, 174 | EC6429101A4B65315F2F7435 /* 📦 Copy Pods Resources */, 175 | ); 176 | buildRules = ( 177 | ); 178 | dependencies = ( 179 | ); 180 | name = CLImageViewPopup_Example; 181 | productName = CLImageViewPopup; 182 | productReference = 607FACD01AFB9204008FA782 /* CLImageViewPopup_Example.app */; 183 | productType = "com.apple.product-type.application"; 184 | }; 185 | 607FACE41AFB9204008FA782 /* CLImageViewPopup_Tests */ = { 186 | isa = PBXNativeTarget; 187 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CLImageViewPopup_Tests" */; 188 | buildPhases = ( 189 | 9AC748F40F3CDDF6E0937C49 /* 📦 Check Pods Manifest.lock */, 190 | 607FACE11AFB9204008FA782 /* Sources */, 191 | 607FACE21AFB9204008FA782 /* Frameworks */, 192 | 607FACE31AFB9204008FA782 /* Resources */, 193 | DA13A6C7976E906FAC6354B6 /* 📦 Embed Pods Frameworks */, 194 | 2CC2E7503EBCA0B8A65208E0 /* 📦 Copy Pods Resources */, 195 | ); 196 | buildRules = ( 197 | ); 198 | dependencies = ( 199 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 200 | ); 201 | name = CLImageViewPopup_Tests; 202 | productName = Tests; 203 | productReference = 607FACE51AFB9204008FA782 /* CLImageViewPopup_Tests.xctest */; 204 | productType = "com.apple.product-type.bundle.unit-test"; 205 | }; 206 | /* End PBXNativeTarget section */ 207 | 208 | /* Begin PBXProject section */ 209 | 607FACC81AFB9204008FA782 /* Project object */ = { 210 | isa = PBXProject; 211 | attributes = { 212 | LastSwiftUpdateCheck = 0720; 213 | LastUpgradeCheck = 0800; 214 | ORGANIZATIONNAME = CocoaPods; 215 | TargetAttributes = { 216 | 607FACCF1AFB9204008FA782 = { 217 | CreatedOnToolsVersion = 6.3.1; 218 | DevelopmentTeam = K4T72E2N9S; 219 | LastSwiftMigration = 0800; 220 | }; 221 | 607FACE41AFB9204008FA782 = { 222 | CreatedOnToolsVersion = 6.3.1; 223 | LastSwiftMigration = 0800; 224 | TestTargetID = 607FACCF1AFB9204008FA782; 225 | }; 226 | }; 227 | }; 228 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "CLImageViewPopup" */; 229 | compatibilityVersion = "Xcode 3.2"; 230 | developmentRegion = English; 231 | hasScannedForEncodings = 0; 232 | knownRegions = ( 233 | en, 234 | Base, 235 | ); 236 | mainGroup = 607FACC71AFB9204008FA782; 237 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 238 | projectDirPath = ""; 239 | projectRoot = ""; 240 | targets = ( 241 | 607FACCF1AFB9204008FA782 /* CLImageViewPopup_Example */, 242 | 607FACE41AFB9204008FA782 /* CLImageViewPopup_Tests */, 243 | ); 244 | }; 245 | /* End PBXProject section */ 246 | 247 | /* Begin PBXResourcesBuildPhase section */ 248 | 607FACCE1AFB9204008FA782 /* Resources */ = { 249 | isa = PBXResourcesBuildPhase; 250 | buildActionMask = 2147483647; 251 | files = ( 252 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 253 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 254 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 255 | ); 256 | runOnlyForDeploymentPostprocessing = 0; 257 | }; 258 | 607FACE31AFB9204008FA782 /* Resources */ = { 259 | isa = PBXResourcesBuildPhase; 260 | buildActionMask = 2147483647; 261 | files = ( 262 | ); 263 | runOnlyForDeploymentPostprocessing = 0; 264 | }; 265 | /* End PBXResourcesBuildPhase section */ 266 | 267 | /* Begin PBXShellScriptBuildPhase section */ 268 | 2CC2E7503EBCA0B8A65208E0 /* 📦 Copy Pods Resources */ = { 269 | isa = PBXShellScriptBuildPhase; 270 | buildActionMask = 2147483647; 271 | files = ( 272 | ); 273 | inputPaths = ( 274 | ); 275 | name = "📦 Copy Pods Resources"; 276 | outputPaths = ( 277 | ); 278 | runOnlyForDeploymentPostprocessing = 0; 279 | shellPath = /bin/sh; 280 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-resources.sh\"\n"; 281 | showEnvVarsInLog = 0; 282 | }; 283 | 3C645113716E992B6DBC262B /* 📦 Embed Pods Frameworks */ = { 284 | isa = PBXShellScriptBuildPhase; 285 | buildActionMask = 2147483647; 286 | files = ( 287 | ); 288 | inputPaths = ( 289 | ); 290 | name = "📦 Embed Pods Frameworks"; 291 | outputPaths = ( 292 | ); 293 | runOnlyForDeploymentPostprocessing = 0; 294 | shellPath = /bin/sh; 295 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-frameworks.sh\"\n"; 296 | showEnvVarsInLog = 0; 297 | }; 298 | 4EED3C9E1BA164051BF90520 /* 📦 Check Pods Manifest.lock */ = { 299 | isa = PBXShellScriptBuildPhase; 300 | buildActionMask = 2147483647; 301 | files = ( 302 | ); 303 | inputPaths = ( 304 | ); 305 | name = "📦 Check Pods Manifest.lock"; 306 | outputPaths = ( 307 | ); 308 | runOnlyForDeploymentPostprocessing = 0; 309 | shellPath = /bin/sh; 310 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 311 | showEnvVarsInLog = 0; 312 | }; 313 | 9AC748F40F3CDDF6E0937C49 /* 📦 Check Pods Manifest.lock */ = { 314 | isa = PBXShellScriptBuildPhase; 315 | buildActionMask = 2147483647; 316 | files = ( 317 | ); 318 | inputPaths = ( 319 | ); 320 | name = "📦 Check Pods Manifest.lock"; 321 | outputPaths = ( 322 | ); 323 | runOnlyForDeploymentPostprocessing = 0; 324 | shellPath = /bin/sh; 325 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 326 | showEnvVarsInLog = 0; 327 | }; 328 | DA13A6C7976E906FAC6354B6 /* 📦 Embed Pods Frameworks */ = { 329 | isa = PBXShellScriptBuildPhase; 330 | buildActionMask = 2147483647; 331 | files = ( 332 | ); 333 | inputPaths = ( 334 | ); 335 | name = "📦 Embed Pods Frameworks"; 336 | outputPaths = ( 337 | ); 338 | runOnlyForDeploymentPostprocessing = 0; 339 | shellPath = /bin/sh; 340 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-frameworks.sh\"\n"; 341 | showEnvVarsInLog = 0; 342 | }; 343 | EC6429101A4B65315F2F7435 /* 📦 Copy Pods Resources */ = { 344 | isa = PBXShellScriptBuildPhase; 345 | buildActionMask = 2147483647; 346 | files = ( 347 | ); 348 | inputPaths = ( 349 | ); 350 | name = "📦 Copy Pods Resources"; 351 | outputPaths = ( 352 | ); 353 | runOnlyForDeploymentPostprocessing = 0; 354 | shellPath = /bin/sh; 355 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-resources.sh\"\n"; 356 | showEnvVarsInLog = 0; 357 | }; 358 | /* End PBXShellScriptBuildPhase section */ 359 | 360 | /* Begin PBXSourcesBuildPhase section */ 361 | 607FACCC1AFB9204008FA782 /* Sources */ = { 362 | isa = PBXSourcesBuildPhase; 363 | buildActionMask = 2147483647; 364 | files = ( 365 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 366 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 367 | ); 368 | runOnlyForDeploymentPostprocessing = 0; 369 | }; 370 | 607FACE11AFB9204008FA782 /* Sources */ = { 371 | isa = PBXSourcesBuildPhase; 372 | buildActionMask = 2147483647; 373 | files = ( 374 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 375 | ); 376 | runOnlyForDeploymentPostprocessing = 0; 377 | }; 378 | /* End PBXSourcesBuildPhase section */ 379 | 380 | /* Begin PBXTargetDependency section */ 381 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 382 | isa = PBXTargetDependency; 383 | target = 607FACCF1AFB9204008FA782 /* CLImageViewPopup_Example */; 384 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 385 | }; 386 | /* End PBXTargetDependency section */ 387 | 388 | /* Begin PBXVariantGroup section */ 389 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 390 | isa = PBXVariantGroup; 391 | children = ( 392 | 607FACDA1AFB9204008FA782 /* Base */, 393 | ); 394 | name = Main.storyboard; 395 | sourceTree = ""; 396 | }; 397 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 398 | isa = PBXVariantGroup; 399 | children = ( 400 | 607FACDF1AFB9204008FA782 /* Base */, 401 | ); 402 | name = LaunchScreen.xib; 403 | sourceTree = ""; 404 | }; 405 | /* End PBXVariantGroup section */ 406 | 407 | /* Begin XCBuildConfiguration section */ 408 | 607FACED1AFB9204008FA782 /* Debug */ = { 409 | isa = XCBuildConfiguration; 410 | buildSettings = { 411 | ALWAYS_SEARCH_USER_PATHS = NO; 412 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 413 | CLANG_CXX_LIBRARY = "libc++"; 414 | CLANG_ENABLE_MODULES = YES; 415 | CLANG_ENABLE_OBJC_ARC = YES; 416 | CLANG_WARN_BOOL_CONVERSION = YES; 417 | CLANG_WARN_CONSTANT_CONVERSION = YES; 418 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 419 | CLANG_WARN_EMPTY_BODY = YES; 420 | CLANG_WARN_ENUM_CONVERSION = YES; 421 | CLANG_WARN_INFINITE_RECURSION = YES; 422 | CLANG_WARN_INT_CONVERSION = YES; 423 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 424 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 425 | CLANG_WARN_UNREACHABLE_CODE = YES; 426 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 427 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 428 | COPY_PHASE_STRIP = NO; 429 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 430 | ENABLE_STRICT_OBJC_MSGSEND = YES; 431 | ENABLE_TESTABILITY = YES; 432 | GCC_C_LANGUAGE_STANDARD = gnu99; 433 | GCC_DYNAMIC_NO_PIC = NO; 434 | GCC_NO_COMMON_BLOCKS = YES; 435 | GCC_OPTIMIZATION_LEVEL = 0; 436 | GCC_PREPROCESSOR_DEFINITIONS = ( 437 | "DEBUG=1", 438 | "$(inherited)", 439 | ); 440 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 441 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 442 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 443 | GCC_WARN_UNDECLARED_SELECTOR = YES; 444 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 445 | GCC_WARN_UNUSED_FUNCTION = YES; 446 | GCC_WARN_UNUSED_VARIABLE = YES; 447 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 448 | MTL_ENABLE_DEBUG_INFO = YES; 449 | ONLY_ACTIVE_ARCH = YES; 450 | SDKROOT = iphoneos; 451 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 452 | }; 453 | name = Debug; 454 | }; 455 | 607FACEE1AFB9204008FA782 /* Release */ = { 456 | isa = XCBuildConfiguration; 457 | buildSettings = { 458 | ALWAYS_SEARCH_USER_PATHS = NO; 459 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 460 | CLANG_CXX_LIBRARY = "libc++"; 461 | CLANG_ENABLE_MODULES = YES; 462 | CLANG_ENABLE_OBJC_ARC = YES; 463 | CLANG_WARN_BOOL_CONVERSION = YES; 464 | CLANG_WARN_CONSTANT_CONVERSION = YES; 465 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 466 | CLANG_WARN_EMPTY_BODY = YES; 467 | CLANG_WARN_ENUM_CONVERSION = YES; 468 | CLANG_WARN_INFINITE_RECURSION = YES; 469 | CLANG_WARN_INT_CONVERSION = YES; 470 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 471 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 472 | CLANG_WARN_UNREACHABLE_CODE = YES; 473 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 474 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 475 | COPY_PHASE_STRIP = NO; 476 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 477 | ENABLE_NS_ASSERTIONS = NO; 478 | ENABLE_STRICT_OBJC_MSGSEND = YES; 479 | GCC_C_LANGUAGE_STANDARD = gnu99; 480 | GCC_NO_COMMON_BLOCKS = YES; 481 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 482 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 483 | GCC_WARN_UNDECLARED_SELECTOR = YES; 484 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 485 | GCC_WARN_UNUSED_FUNCTION = YES; 486 | GCC_WARN_UNUSED_VARIABLE = YES; 487 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 488 | MTL_ENABLE_DEBUG_INFO = NO; 489 | SDKROOT = iphoneos; 490 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 491 | VALIDATE_PRODUCT = YES; 492 | }; 493 | name = Release; 494 | }; 495 | 607FACF01AFB9204008FA782 /* Debug */ = { 496 | isa = XCBuildConfiguration; 497 | baseConfigurationReference = D99AA55AA5C15058623C3392 /* Pods-CLImageViewPopup_Example.debug.xcconfig */; 498 | buildSettings = { 499 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 500 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 501 | DEVELOPMENT_TEAM = K4T72E2N9S; 502 | INFOPLIST_FILE = CLImageViewPopup/Info.plist; 503 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 504 | MODULE_NAME = ExampleApp; 505 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 506 | PRODUCT_NAME = "$(TARGET_NAME)"; 507 | SWIFT_VERSION = 3.0; 508 | }; 509 | name = Debug; 510 | }; 511 | 607FACF11AFB9204008FA782 /* Release */ = { 512 | isa = XCBuildConfiguration; 513 | baseConfigurationReference = 27D689F8B477B67B3D9AC552 /* Pods-CLImageViewPopup_Example.release.xcconfig */; 514 | buildSettings = { 515 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 516 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 517 | DEVELOPMENT_TEAM = K4T72E2N9S; 518 | INFOPLIST_FILE = CLImageViewPopup/Info.plist; 519 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 520 | MODULE_NAME = ExampleApp; 521 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 522 | PRODUCT_NAME = "$(TARGET_NAME)"; 523 | SWIFT_VERSION = 3.0; 524 | }; 525 | name = Release; 526 | }; 527 | 607FACF31AFB9204008FA782 /* Debug */ = { 528 | isa = XCBuildConfiguration; 529 | baseConfigurationReference = 9EEEB5BCB5EF8ACBD68A637B /* Pods-CLImageViewPopup_Tests.debug.xcconfig */; 530 | buildSettings = { 531 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 532 | FRAMEWORK_SEARCH_PATHS = ( 533 | "$(SDKROOT)/Developer/Library/Frameworks", 534 | "$(inherited)", 535 | ); 536 | GCC_PREPROCESSOR_DEFINITIONS = ( 537 | "DEBUG=1", 538 | "$(inherited)", 539 | ); 540 | INFOPLIST_FILE = Tests/Info.plist; 541 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 542 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 543 | PRODUCT_NAME = "$(TARGET_NAME)"; 544 | SWIFT_VERSION = 3.0; 545 | }; 546 | name = Debug; 547 | }; 548 | 607FACF41AFB9204008FA782 /* Release */ = { 549 | isa = XCBuildConfiguration; 550 | baseConfigurationReference = 8E18D3DA240DCA6366DD74D4 /* Pods-CLImageViewPopup_Tests.release.xcconfig */; 551 | buildSettings = { 552 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 553 | FRAMEWORK_SEARCH_PATHS = ( 554 | "$(SDKROOT)/Developer/Library/Frameworks", 555 | "$(inherited)", 556 | ); 557 | INFOPLIST_FILE = Tests/Info.plist; 558 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 559 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 560 | PRODUCT_NAME = "$(TARGET_NAME)"; 561 | SWIFT_VERSION = 3.0; 562 | }; 563 | name = Release; 564 | }; 565 | /* End XCBuildConfiguration section */ 566 | 567 | /* Begin XCConfigurationList section */ 568 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "CLImageViewPopup" */ = { 569 | isa = XCConfigurationList; 570 | buildConfigurations = ( 571 | 607FACED1AFB9204008FA782 /* Debug */, 572 | 607FACEE1AFB9204008FA782 /* Release */, 573 | ); 574 | defaultConfigurationIsVisible = 0; 575 | defaultConfigurationName = Release; 576 | }; 577 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CLImageViewPopup_Example" */ = { 578 | isa = XCConfigurationList; 579 | buildConfigurations = ( 580 | 607FACF01AFB9204008FA782 /* Debug */, 581 | 607FACF11AFB9204008FA782 /* Release */, 582 | ); 583 | defaultConfigurationIsVisible = 0; 584 | defaultConfigurationName = Release; 585 | }; 586 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CLImageViewPopup_Tests" */ = { 587 | isa = XCConfigurationList; 588 | buildConfigurations = ( 589 | 607FACF31AFB9204008FA782 /* Debug */, 590 | 607FACF41AFB9204008FA782 /* Release */, 591 | ); 592 | defaultConfigurationIsVisible = 0; 593 | defaultConfigurationName = Release; 594 | }; 595 | /* End XCConfigurationList section */ 596 | }; 597 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 598 | } 599 | -------------------------------------------------------------------------------- /Example/CLImageViewPopup.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/CLImageViewPopup.xcodeproj/xcshareddata/xcschemes/CLImageViewPopup-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Example/CLImageViewPopup.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/CLImageViewPopup/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // CLImageViewPopup 4 | // 5 | // Created by Vineeth Vijayan on 05/01/2016. 6 | // Copyright (c) 2016 Vineeth Vijayan. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Images.xcassets/people.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "people.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Images.xcassets/people.imageset/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vin-the-dev/CLImageViewPopup/041bafd783c17a85bdf9de2bc38aed832e530ec1/Example/CLImageViewPopup/Images.xcassets/people.imageset/people.png -------------------------------------------------------------------------------- /Example/CLImageViewPopup/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 2.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/CLImageViewPopup/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // CLImageViewPopup 4 | // 5 | // Created by Vineeth Vijayan on 05/01/2016. 6 | // Copyright (c) 2016 Vineeth Vijayan. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import CLImageViewPopup 11 | 12 | class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { 13 | 14 | override func viewDidLoad() { 15 | super.viewDidLoad() 16 | // Do any additional setup after loading the view, typically from a nib. 17 | 18 | } 19 | 20 | override func didReceiveMemoryWarning() { 21 | super.didReceiveMemoryWarning() 22 | // Dispose of any resources that can be recreated. 23 | } 24 | 25 | //MARK: Table View 26 | func numberOfSections(in tableView: UITableView) -> Int { 27 | return 1 28 | } 29 | 30 | func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 31 | return 20 32 | } 33 | 34 | func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 35 | let cell = tableView.dequeueReusableCell(withIdentifier: "imagecell", for: indexPath) 36 | return cell 37 | } 38 | } 39 | 40 | class ImageCell: UITableViewCell { 41 | 42 | } 43 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'CLImageViewPopup_Example' do 4 | pod 'CLImageViewPopup', :path => '../' 5 | end 6 | 7 | target 'CLImageViewPopup_Tests' do 8 | pod 'CLImageViewPopup', :path => '../' 9 | 10 | 11 | end 12 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - CLImageViewPopup (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - CLImageViewPopup (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | CLImageViewPopup: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | CLImageViewPopup: 9d64f82c7b55e98f44338ccc32c2e3d76d1e80ea 13 | 14 | PODFILE CHECKSUM: 3b9447426a745b46adfbe445df80a37a9e5b3bf5 15 | 16 | COCOAPODS: 1.0.0.beta.8 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CLImageViewPopup.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CLImageViewPopup", 3 | "version": "0.2.0", 4 | "summary": "A simple Image View when tapped, pops up to full screen.", 5 | "description": "TODO: Add long description of the pod here. A simple Image View to be tapped to make it full screen.", 6 | "homepage": "https://github.com/vinbhai4u/CLImageViewPopup", 7 | "license": "MIT", 8 | "authors": { 9 | "Vineeth Vijayan": "vinbhai4u@gmail.com" 10 | }, 11 | "source": { 12 | "git": "https://github.com/vinbhai4u/CLImageViewPopup.git", 13 | "tag": "0.2.0" 14 | }, 15 | "platforms": { 16 | "ios": "8.0" 17 | }, 18 | "source_files": "CLImageViewPopup/Classes/**/*" 19 | } 20 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - CLImageViewPopup (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - CLImageViewPopup (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | CLImageViewPopup: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | CLImageViewPopup: 9d64f82c7b55e98f44338ccc32c2e3d76d1e80ea 13 | 14 | PODFILE CHECKSUM: 3b9447426a745b46adfbe445df80a37a9e5b3bf5 15 | 16 | COCOAPODS: 1.0.0.beta.8 17 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0E7BAFBAF93CE3827BC6EFA7E3A72C47 /* CLImageViewPopup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77C956EBF4BC5EBCF54F0267299A4F4C /* CLImageViewPopup.swift */; }; 11 | 1BA55316DC66B63DA8A67BF89462A34E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */; }; 12 | 214D4DA1BE7F21F7B0CE770662C2A947 /* Pods-CLImageViewPopup_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 96572B9265353AB9D54361C1BCDBE272 /* Pods-CLImageViewPopup_Example-dummy.m */; }; 13 | 26B4594C1848859257D6E56665D6D985 /* Pods-CLImageViewPopup_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E57083A798ABE1F933D672A907EC9C /* Pods-CLImageViewPopup_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 6DA5FBF884AFF4177A117A581C0F909A /* Pods-CLImageViewPopup_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7677886AA32A20939DFE3A63CFB4833B /* Pods-CLImageViewPopup_Tests-dummy.m */; }; 15 | 7D9CBB1B6B5EF0463970B5E53321A6BA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */; }; 16 | 8D675767214D735A58416DE4BF59EB35 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */; }; 17 | 9FD34C9B74B63CF53348ED64FA6A7B42 /* CLImageViewPopup-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BEF24258714AB9928BF9FC1F3CECCA6 /* CLImageViewPopup-dummy.m */; }; 18 | B3C216D8127E1D2103431094B57DB85E /* CLImageViewPopup-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF4848FB167530C7ECD6B9FA26E994E /* CLImageViewPopup-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | F6645FF606CD0E16265257DD847357A5 /* Pods-CLImageViewPopup_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 02336D60BDDD9A9FF408D0293CFECAA0 /* Pods-CLImageViewPopup_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXContainerItemProxy section */ 23 | 795E6F18DEA34EE5EC498C6010D17181 /* PBXContainerItemProxy */ = { 24 | isa = PBXContainerItemProxy; 25 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 26 | proxyType = 1; 27 | remoteGlobalIDString = A50FC04FE2023781DA54839972894E39; 28 | remoteInfo = CLImageViewPopup; 29 | }; 30 | FA857A0A959B2754117644CBB8392569 /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = A50FC04FE2023781DA54839972894E39; 35 | remoteInfo = CLImageViewPopup; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 018CE3FD246F16631149C64E84F9DC50 /* Pods-CLImageViewPopup_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CLImageViewPopup_Tests.debug.xcconfig"; sourceTree = ""; }; 41 | 02336D60BDDD9A9FF408D0293CFECAA0 /* Pods-CLImageViewPopup_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CLImageViewPopup_Example-umbrella.h"; sourceTree = ""; }; 42 | 0B8FC9E168EF46C5F125E46515FF59E4 /* Pods-CLImageViewPopup_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CLImageViewPopup_Example-frameworks.sh"; sourceTree = ""; }; 43 | 0BEF24258714AB9928BF9FC1F3CECCA6 /* CLImageViewPopup-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CLImageViewPopup-dummy.m"; sourceTree = ""; }; 44 | 0CEE242AB99DB75216283AD6DC2E7694 /* Pods-CLImageViewPopup_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CLImageViewPopup_Example.release.xcconfig"; sourceTree = ""; }; 45 | 127EA41FE4668A6C102B34577CD4D17C /* Pods-CLImageViewPopup_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CLImageViewPopup_Tests-resources.sh"; sourceTree = ""; }; 46 | 24AB4C6067B83A323AF97F47657B7E09 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 47 | 26C22042255FCF11B30E3D7B39211987 /* CLImageViewPopup.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = CLImageViewPopup.modulemap; sourceTree = ""; }; 48 | 2E747535247E588925D82DFA5F58EDDE /* Pods_CLImageViewPopup_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CLImageViewPopup_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 50 | 467D0D28C357B4D84458D862F1FE5D7F /* Pods-CLImageViewPopup_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CLImageViewPopup_Example-acknowledgements.plist"; sourceTree = ""; }; 51 | 4760AC42CE5E43EAE8A5A9820445BF1D /* Pods-CLImageViewPopup_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-CLImageViewPopup_Tests.modulemap"; sourceTree = ""; }; 52 | 50F4B7E0F5A29C5E9C470FF04701152C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 53 | 59FEBA5CD5D6E4D6CBFD8C0F5D24CCF9 /* CLImageViewPopup.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CLImageViewPopup.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | 5ABA91FD7EC7705187B80D67D051D459 /* Pods-CLImageViewPopup_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-CLImageViewPopup_Example.modulemap"; sourceTree = ""; }; 55 | 691D009C8D26B9F9E8A4A3702C138E22 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 56 | 7677886AA32A20939DFE3A63CFB4833B /* Pods-CLImageViewPopup_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CLImageViewPopup_Tests-dummy.m"; sourceTree = ""; }; 57 | 77C956EBF4BC5EBCF54F0267299A4F4C /* CLImageViewPopup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CLImageViewPopup.swift; sourceTree = ""; }; 58 | 8266F7C01F5FABB09E55E829FB6AD734 /* Pods-CLImageViewPopup_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CLImageViewPopup_Example-resources.sh"; sourceTree = ""; }; 59 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 60 | 95BD8038AE634426A3BD193D1FAC7B44 /* CLImageViewPopup-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLImageViewPopup-prefix.pch"; sourceTree = ""; }; 61 | 96572B9265353AB9D54361C1BCDBE272 /* Pods-CLImageViewPopup_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CLImageViewPopup_Example-dummy.m"; sourceTree = ""; }; 62 | AED546CE9F7250C3F0FBF067E5BDF5DD /* CLImageViewPopup.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CLImageViewPopup.xcconfig; sourceTree = ""; }; 63 | B89572EEA883D2BEEF9F1B4BB6CF6D5B /* Pods-CLImageViewPopup_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CLImageViewPopup_Example-acknowledgements.markdown"; sourceTree = ""; }; 64 | B942A9FBD002982EF03C0B37DDD4E639 /* Pods-CLImageViewPopup_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CLImageViewPopup_Tests-frameworks.sh"; sourceTree = ""; }; 65 | BEF4848FB167530C7ECD6B9FA26E994E /* CLImageViewPopup-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLImageViewPopup-umbrella.h"; sourceTree = ""; }; 66 | C06152238E38EE76BA20F32D326FB93E /* Pods-CLImageViewPopup_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CLImageViewPopup_Tests-acknowledgements.markdown"; sourceTree = ""; }; 67 | C0E57083A798ABE1F933D672A907EC9C /* Pods-CLImageViewPopup_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CLImageViewPopup_Tests-umbrella.h"; sourceTree = ""; }; 68 | DFAC52E3FF4995DFCED02C1325804DBA /* Pods_CLImageViewPopup_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CLImageViewPopup_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 69 | E8AE6B710A38569D5911C5491ABC8C09 /* Pods-CLImageViewPopup_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CLImageViewPopup_Example.debug.xcconfig"; sourceTree = ""; }; 70 | ED80C121E61B451D5FAFBFB23CD07E51 /* Pods-CLImageViewPopup_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CLImageViewPopup_Tests-acknowledgements.plist"; sourceTree = ""; }; 71 | EF6F46855B0DE4ADAFA553654FB8BB35 /* Pods-CLImageViewPopup_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CLImageViewPopup_Tests.release.xcconfig"; sourceTree = ""; }; 72 | /* End PBXFileReference section */ 73 | 74 | /* Begin PBXFrameworksBuildPhase section */ 75 | 02928F51DEA7299B3758AE91404E46BD /* Frameworks */ = { 76 | isa = PBXFrameworksBuildPhase; 77 | buildActionMask = 2147483647; 78 | files = ( 79 | 1BA55316DC66B63DA8A67BF89462A34E /* Foundation.framework in Frameworks */, 80 | ); 81 | runOnlyForDeploymentPostprocessing = 0; 82 | }; 83 | 296E600D3C2521898FFC15D2628BEEB7 /* Frameworks */ = { 84 | isa = PBXFrameworksBuildPhase; 85 | buildActionMask = 2147483647; 86 | files = ( 87 | 7D9CBB1B6B5EF0463970B5E53321A6BA /* Foundation.framework in Frameworks */, 88 | ); 89 | runOnlyForDeploymentPostprocessing = 0; 90 | }; 91 | 9D2FA8687132820955BF068C5EE3EEB2 /* Frameworks */ = { 92 | isa = PBXFrameworksBuildPhase; 93 | buildActionMask = 2147483647; 94 | files = ( 95 | 8D675767214D735A58416DE4BF59EB35 /* Foundation.framework in Frameworks */, 96 | ); 97 | runOnlyForDeploymentPostprocessing = 0; 98 | }; 99 | /* End PBXFrameworksBuildPhase section */ 100 | 101 | /* Begin PBXGroup section */ 102 | 112C7921E3A497328D11F4930CBBC9CA /* iOS */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */, 106 | ); 107 | name = iOS; 108 | sourceTree = ""; 109 | }; 110 | 1A44DFC05846B7CB57CD2C93EE1DBE82 /* CLImageViewPopup */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 72BE1A709DBDC0A101B0A1573D072044 /* Classes */, 114 | ); 115 | path = CLImageViewPopup; 116 | sourceTree = ""; 117 | }; 118 | 270E3D5729A0EC3932C746C40C08EC05 /* Development Pods */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 67F3C25857A8E3348ECE5773A2E4D85A /* CLImageViewPopup */, 122 | ); 123 | name = "Development Pods"; 124 | sourceTree = ""; 125 | }; 126 | 2FCB2A1207869A1DE9A32A01EE34B23A /* Products */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | 59FEBA5CD5D6E4D6CBFD8C0F5D24CCF9 /* CLImageViewPopup.framework */, 130 | 2E747535247E588925D82DFA5F58EDDE /* Pods_CLImageViewPopup_Example.framework */, 131 | DFAC52E3FF4995DFCED02C1325804DBA /* Pods_CLImageViewPopup_Tests.framework */, 132 | ); 133 | name = Products; 134 | sourceTree = ""; 135 | }; 136 | 5AB5CCF58894FFD07B90A5B8ED0D8436 /* Targets Support Files */ = { 137 | isa = PBXGroup; 138 | children = ( 139 | 88BE5DF08B7D3948DC988855652ABD5E /* Pods-CLImageViewPopup_Example */, 140 | B117FC7718B249852FD508B83C3C0B1C /* Pods-CLImageViewPopup_Tests */, 141 | ); 142 | name = "Targets Support Files"; 143 | sourceTree = ""; 144 | }; 145 | 67F3C25857A8E3348ECE5773A2E4D85A /* CLImageViewPopup */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | 1A44DFC05846B7CB57CD2C93EE1DBE82 /* CLImageViewPopup */, 149 | B841FC7F23C935BE08E9E3953DE5EB7B /* Support Files */, 150 | ); 151 | name = CLImageViewPopup; 152 | path = ../..; 153 | sourceTree = ""; 154 | }; 155 | 72BE1A709DBDC0A101B0A1573D072044 /* Classes */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | 77C956EBF4BC5EBCF54F0267299A4F4C /* CLImageViewPopup.swift */, 159 | ); 160 | path = Classes; 161 | sourceTree = ""; 162 | }; 163 | 7DB346D0F39D3F0E887471402A8071AB = { 164 | isa = PBXGroup; 165 | children = ( 166 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 167 | 270E3D5729A0EC3932C746C40C08EC05 /* Development Pods */, 168 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 169 | 2FCB2A1207869A1DE9A32A01EE34B23A /* Products */, 170 | 5AB5CCF58894FFD07B90A5B8ED0D8436 /* Targets Support Files */, 171 | ); 172 | sourceTree = ""; 173 | }; 174 | 88BE5DF08B7D3948DC988855652ABD5E /* Pods-CLImageViewPopup_Example */ = { 175 | isa = PBXGroup; 176 | children = ( 177 | 24AB4C6067B83A323AF97F47657B7E09 /* Info.plist */, 178 | 5ABA91FD7EC7705187B80D67D051D459 /* Pods-CLImageViewPopup_Example.modulemap */, 179 | B89572EEA883D2BEEF9F1B4BB6CF6D5B /* Pods-CLImageViewPopup_Example-acknowledgements.markdown */, 180 | 467D0D28C357B4D84458D862F1FE5D7F /* Pods-CLImageViewPopup_Example-acknowledgements.plist */, 181 | 96572B9265353AB9D54361C1BCDBE272 /* Pods-CLImageViewPopup_Example-dummy.m */, 182 | 0B8FC9E168EF46C5F125E46515FF59E4 /* Pods-CLImageViewPopup_Example-frameworks.sh */, 183 | 8266F7C01F5FABB09E55E829FB6AD734 /* Pods-CLImageViewPopup_Example-resources.sh */, 184 | 02336D60BDDD9A9FF408D0293CFECAA0 /* Pods-CLImageViewPopup_Example-umbrella.h */, 185 | E8AE6B710A38569D5911C5491ABC8C09 /* Pods-CLImageViewPopup_Example.debug.xcconfig */, 186 | 0CEE242AB99DB75216283AD6DC2E7694 /* Pods-CLImageViewPopup_Example.release.xcconfig */, 187 | ); 188 | name = "Pods-CLImageViewPopup_Example"; 189 | path = "Target Support Files/Pods-CLImageViewPopup_Example"; 190 | sourceTree = ""; 191 | }; 192 | B117FC7718B249852FD508B83C3C0B1C /* Pods-CLImageViewPopup_Tests */ = { 193 | isa = PBXGroup; 194 | children = ( 195 | 691D009C8D26B9F9E8A4A3702C138E22 /* Info.plist */, 196 | 4760AC42CE5E43EAE8A5A9820445BF1D /* Pods-CLImageViewPopup_Tests.modulemap */, 197 | C06152238E38EE76BA20F32D326FB93E /* Pods-CLImageViewPopup_Tests-acknowledgements.markdown */, 198 | ED80C121E61B451D5FAFBFB23CD07E51 /* Pods-CLImageViewPopup_Tests-acknowledgements.plist */, 199 | 7677886AA32A20939DFE3A63CFB4833B /* Pods-CLImageViewPopup_Tests-dummy.m */, 200 | B942A9FBD002982EF03C0B37DDD4E639 /* Pods-CLImageViewPopup_Tests-frameworks.sh */, 201 | 127EA41FE4668A6C102B34577CD4D17C /* Pods-CLImageViewPopup_Tests-resources.sh */, 202 | C0E57083A798ABE1F933D672A907EC9C /* Pods-CLImageViewPopup_Tests-umbrella.h */, 203 | 018CE3FD246F16631149C64E84F9DC50 /* Pods-CLImageViewPopup_Tests.debug.xcconfig */, 204 | EF6F46855B0DE4ADAFA553654FB8BB35 /* Pods-CLImageViewPopup_Tests.release.xcconfig */, 205 | ); 206 | name = "Pods-CLImageViewPopup_Tests"; 207 | path = "Target Support Files/Pods-CLImageViewPopup_Tests"; 208 | sourceTree = ""; 209 | }; 210 | B841FC7F23C935BE08E9E3953DE5EB7B /* Support Files */ = { 211 | isa = PBXGroup; 212 | children = ( 213 | 26C22042255FCF11B30E3D7B39211987 /* CLImageViewPopup.modulemap */, 214 | AED546CE9F7250C3F0FBF067E5BDF5DD /* CLImageViewPopup.xcconfig */, 215 | 0BEF24258714AB9928BF9FC1F3CECCA6 /* CLImageViewPopup-dummy.m */, 216 | 95BD8038AE634426A3BD193D1FAC7B44 /* CLImageViewPopup-prefix.pch */, 217 | BEF4848FB167530C7ECD6B9FA26E994E /* CLImageViewPopup-umbrella.h */, 218 | 50F4B7E0F5A29C5E9C470FF04701152C /* Info.plist */, 219 | ); 220 | name = "Support Files"; 221 | path = "Example/Pods/Target Support Files/CLImageViewPopup"; 222 | sourceTree = ""; 223 | }; 224 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 225 | isa = PBXGroup; 226 | children = ( 227 | 112C7921E3A497328D11F4930CBBC9CA /* iOS */, 228 | ); 229 | name = Frameworks; 230 | sourceTree = ""; 231 | }; 232 | /* End PBXGroup section */ 233 | 234 | /* Begin PBXHeadersBuildPhase section */ 235 | 41B8E8A2082FD5F9E1DE824CBD781EC1 /* Headers */ = { 236 | isa = PBXHeadersBuildPhase; 237 | buildActionMask = 2147483647; 238 | files = ( 239 | F6645FF606CD0E16265257DD847357A5 /* Pods-CLImageViewPopup_Example-umbrella.h in Headers */, 240 | ); 241 | runOnlyForDeploymentPostprocessing = 0; 242 | }; 243 | 65FF20AA4608989EB68BAFDFE3E60128 /* Headers */ = { 244 | isa = PBXHeadersBuildPhase; 245 | buildActionMask = 2147483647; 246 | files = ( 247 | B3C216D8127E1D2103431094B57DB85E /* CLImageViewPopup-umbrella.h in Headers */, 248 | ); 249 | runOnlyForDeploymentPostprocessing = 0; 250 | }; 251 | FC5D9C1B34A148033F571D7FA2756F0D /* Headers */ = { 252 | isa = PBXHeadersBuildPhase; 253 | buildActionMask = 2147483647; 254 | files = ( 255 | 26B4594C1848859257D6E56665D6D985 /* Pods-CLImageViewPopup_Tests-umbrella.h in Headers */, 256 | ); 257 | runOnlyForDeploymentPostprocessing = 0; 258 | }; 259 | /* End PBXHeadersBuildPhase section */ 260 | 261 | /* Begin PBXNativeTarget section */ 262 | 2B9349A73A1338E447921BF712F7684E /* Pods-CLImageViewPopup_Tests */ = { 263 | isa = PBXNativeTarget; 264 | buildConfigurationList = F7364922AA6F0C6E039C9BC2364FEAD6 /* Build configuration list for PBXNativeTarget "Pods-CLImageViewPopup_Tests" */; 265 | buildPhases = ( 266 | 03BA219094DE036B3B4DCBD3723A85B9 /* Sources */, 267 | 296E600D3C2521898FFC15D2628BEEB7 /* Frameworks */, 268 | FC5D9C1B34A148033F571D7FA2756F0D /* Headers */, 269 | ); 270 | buildRules = ( 271 | ); 272 | dependencies = ( 273 | 54FABEB5787ACF3219FCFAC334F6BB32 /* PBXTargetDependency */, 274 | ); 275 | name = "Pods-CLImageViewPopup_Tests"; 276 | productName = "Pods-CLImageViewPopup_Tests"; 277 | productReference = DFAC52E3FF4995DFCED02C1325804DBA /* Pods_CLImageViewPopup_Tests.framework */; 278 | productType = "com.apple.product-type.framework"; 279 | }; 280 | 489BB1B75D604B1AE309DCC7548EAC72 /* Pods-CLImageViewPopup_Example */ = { 281 | isa = PBXNativeTarget; 282 | buildConfigurationList = 4C45F89892D1381F58185A931A2191CE /* Build configuration list for PBXNativeTarget "Pods-CLImageViewPopup_Example" */; 283 | buildPhases = ( 284 | F735F3AA6939D5E0D565F85D9DF7CD4A /* Sources */, 285 | 9D2FA8687132820955BF068C5EE3EEB2 /* Frameworks */, 286 | 41B8E8A2082FD5F9E1DE824CBD781EC1 /* Headers */, 287 | ); 288 | buildRules = ( 289 | ); 290 | dependencies = ( 291 | 3C9430FD38A42EC8FEAEA1E0EAFB5EC5 /* PBXTargetDependency */, 292 | ); 293 | name = "Pods-CLImageViewPopup_Example"; 294 | productName = "Pods-CLImageViewPopup_Example"; 295 | productReference = 2E747535247E588925D82DFA5F58EDDE /* Pods_CLImageViewPopup_Example.framework */; 296 | productType = "com.apple.product-type.framework"; 297 | }; 298 | A50FC04FE2023781DA54839972894E39 /* CLImageViewPopup */ = { 299 | isa = PBXNativeTarget; 300 | buildConfigurationList = 0D44EB8BF3288A89CA869C9580844252 /* Build configuration list for PBXNativeTarget "CLImageViewPopup" */; 301 | buildPhases = ( 302 | 759D3612925965B92238C6476D1BE0D8 /* Sources */, 303 | 02928F51DEA7299B3758AE91404E46BD /* Frameworks */, 304 | 65FF20AA4608989EB68BAFDFE3E60128 /* Headers */, 305 | ); 306 | buildRules = ( 307 | ); 308 | dependencies = ( 309 | ); 310 | name = CLImageViewPopup; 311 | productName = CLImageViewPopup; 312 | productReference = 59FEBA5CD5D6E4D6CBFD8C0F5D24CCF9 /* CLImageViewPopup.framework */; 313 | productType = "com.apple.product-type.framework"; 314 | }; 315 | /* End PBXNativeTarget section */ 316 | 317 | /* Begin PBXProject section */ 318 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 319 | isa = PBXProject; 320 | attributes = { 321 | LastSwiftUpdateCheck = 0720; 322 | LastUpgradeCheck = 0700; 323 | TargetAttributes = { 324 | 2B9349A73A1338E447921BF712F7684E = { 325 | LastSwiftMigration = 0800; 326 | }; 327 | 489BB1B75D604B1AE309DCC7548EAC72 = { 328 | LastSwiftMigration = 0800; 329 | }; 330 | A50FC04FE2023781DA54839972894E39 = { 331 | LastSwiftMigration = 0800; 332 | }; 333 | }; 334 | }; 335 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 336 | compatibilityVersion = "Xcode 3.2"; 337 | developmentRegion = English; 338 | hasScannedForEncodings = 0; 339 | knownRegions = ( 340 | en, 341 | ); 342 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 343 | productRefGroup = 2FCB2A1207869A1DE9A32A01EE34B23A /* Products */; 344 | projectDirPath = ""; 345 | projectRoot = ""; 346 | targets = ( 347 | A50FC04FE2023781DA54839972894E39 /* CLImageViewPopup */, 348 | 489BB1B75D604B1AE309DCC7548EAC72 /* Pods-CLImageViewPopup_Example */, 349 | 2B9349A73A1338E447921BF712F7684E /* Pods-CLImageViewPopup_Tests */, 350 | ); 351 | }; 352 | /* End PBXProject section */ 353 | 354 | /* Begin PBXSourcesBuildPhase section */ 355 | 03BA219094DE036B3B4DCBD3723A85B9 /* Sources */ = { 356 | isa = PBXSourcesBuildPhase; 357 | buildActionMask = 2147483647; 358 | files = ( 359 | 6DA5FBF884AFF4177A117A581C0F909A /* Pods-CLImageViewPopup_Tests-dummy.m in Sources */, 360 | ); 361 | runOnlyForDeploymentPostprocessing = 0; 362 | }; 363 | 759D3612925965B92238C6476D1BE0D8 /* Sources */ = { 364 | isa = PBXSourcesBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | 9FD34C9B74B63CF53348ED64FA6A7B42 /* CLImageViewPopup-dummy.m in Sources */, 368 | 0E7BAFBAF93CE3827BC6EFA7E3A72C47 /* CLImageViewPopup.swift in Sources */, 369 | ); 370 | runOnlyForDeploymentPostprocessing = 0; 371 | }; 372 | F735F3AA6939D5E0D565F85D9DF7CD4A /* Sources */ = { 373 | isa = PBXSourcesBuildPhase; 374 | buildActionMask = 2147483647; 375 | files = ( 376 | 214D4DA1BE7F21F7B0CE770662C2A947 /* Pods-CLImageViewPopup_Example-dummy.m in Sources */, 377 | ); 378 | runOnlyForDeploymentPostprocessing = 0; 379 | }; 380 | /* End PBXSourcesBuildPhase section */ 381 | 382 | /* Begin PBXTargetDependency section */ 383 | 3C9430FD38A42EC8FEAEA1E0EAFB5EC5 /* PBXTargetDependency */ = { 384 | isa = PBXTargetDependency; 385 | name = CLImageViewPopup; 386 | target = A50FC04FE2023781DA54839972894E39 /* CLImageViewPopup */; 387 | targetProxy = 795E6F18DEA34EE5EC498C6010D17181 /* PBXContainerItemProxy */; 388 | }; 389 | 54FABEB5787ACF3219FCFAC334F6BB32 /* PBXTargetDependency */ = { 390 | isa = PBXTargetDependency; 391 | name = CLImageViewPopup; 392 | target = A50FC04FE2023781DA54839972894E39 /* CLImageViewPopup */; 393 | targetProxy = FA857A0A959B2754117644CBB8392569 /* PBXContainerItemProxy */; 394 | }; 395 | /* End PBXTargetDependency section */ 396 | 397 | /* Begin XCBuildConfiguration section */ 398 | 00711D378A07A2737C333352046F98FC /* Release */ = { 399 | isa = XCBuildConfiguration; 400 | baseConfigurationReference = 0CEE242AB99DB75216283AD6DC2E7694 /* Pods-CLImageViewPopup_Example.release.xcconfig */; 401 | buildSettings = { 402 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 403 | CURRENT_PROJECT_VERSION = 1; 404 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 405 | DEFINES_MODULE = YES; 406 | DYLIB_COMPATIBILITY_VERSION = 1; 407 | DYLIB_CURRENT_VERSION = 1; 408 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 409 | ENABLE_STRICT_OBJC_MSGSEND = YES; 410 | GCC_NO_COMMON_BLOCKS = YES; 411 | INFOPLIST_FILE = "Target Support Files/Pods-CLImageViewPopup_Example/Info.plist"; 412 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 413 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 414 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 415 | MACH_O_TYPE = staticlib; 416 | MODULEMAP_FILE = "Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.modulemap"; 417 | MTL_ENABLE_DEBUG_INFO = NO; 418 | OTHER_LDFLAGS = ""; 419 | OTHER_LIBTOOLFLAGS = ""; 420 | PODS_ROOT = "$(SRCROOT)"; 421 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 422 | PRODUCT_NAME = Pods_CLImageViewPopup_Example; 423 | SDKROOT = iphoneos; 424 | SKIP_INSTALL = YES; 425 | SWIFT_VERSION = 3.0; 426 | TARGETED_DEVICE_FAMILY = "1,2"; 427 | VERSIONING_SYSTEM = "apple-generic"; 428 | VERSION_INFO_PREFIX = ""; 429 | }; 430 | name = Release; 431 | }; 432 | 1AF322D94DB15784C24ACD60FFBF92C6 /* Debug */ = { 433 | isa = XCBuildConfiguration; 434 | baseConfigurationReference = AED546CE9F7250C3F0FBF067E5BDF5DD /* CLImageViewPopup.xcconfig */; 435 | buildSettings = { 436 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 437 | CURRENT_PROJECT_VERSION = 1; 438 | DEBUG_INFORMATION_FORMAT = dwarf; 439 | DEFINES_MODULE = YES; 440 | DYLIB_COMPATIBILITY_VERSION = 1; 441 | DYLIB_CURRENT_VERSION = 1; 442 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 443 | ENABLE_STRICT_OBJC_MSGSEND = YES; 444 | GCC_NO_COMMON_BLOCKS = YES; 445 | GCC_PREFIX_HEADER = "Target Support Files/CLImageViewPopup/CLImageViewPopup-prefix.pch"; 446 | INFOPLIST_FILE = "Target Support Files/CLImageViewPopup/Info.plist"; 447 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 448 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 449 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 450 | MODULEMAP_FILE = "Target Support Files/CLImageViewPopup/CLImageViewPopup.modulemap"; 451 | MTL_ENABLE_DEBUG_INFO = YES; 452 | PRODUCT_NAME = CLImageViewPopup; 453 | SDKROOT = iphoneos; 454 | SKIP_INSTALL = YES; 455 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 456 | SWIFT_VERSION = 3.0; 457 | TARGETED_DEVICE_FAMILY = "1,2"; 458 | VERSIONING_SYSTEM = "apple-generic"; 459 | VERSION_INFO_PREFIX = ""; 460 | }; 461 | name = Debug; 462 | }; 463 | 372FF5048FF42C3A7A18B70A30D785C1 /* Release */ = { 464 | isa = XCBuildConfiguration; 465 | buildSettings = { 466 | ALWAYS_SEARCH_USER_PATHS = NO; 467 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 468 | CLANG_CXX_LIBRARY = "libc++"; 469 | CLANG_ENABLE_MODULES = YES; 470 | CLANG_ENABLE_OBJC_ARC = YES; 471 | CLANG_WARN_BOOL_CONVERSION = YES; 472 | CLANG_WARN_CONSTANT_CONVERSION = YES; 473 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 474 | CLANG_WARN_EMPTY_BODY = YES; 475 | CLANG_WARN_ENUM_CONVERSION = YES; 476 | CLANG_WARN_INT_CONVERSION = YES; 477 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 478 | CLANG_WARN_UNREACHABLE_CODE = YES; 479 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 480 | COPY_PHASE_STRIP = YES; 481 | ENABLE_NS_ASSERTIONS = NO; 482 | GCC_C_LANGUAGE_STANDARD = gnu99; 483 | GCC_PREPROCESSOR_DEFINITIONS = ( 484 | "POD_CONFIGURATION_RELEASE=1", 485 | "$(inherited)", 486 | ); 487 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 488 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 489 | GCC_WARN_UNDECLARED_SELECTOR = YES; 490 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 491 | GCC_WARN_UNUSED_FUNCTION = YES; 492 | GCC_WARN_UNUSED_VARIABLE = YES; 493 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 494 | STRIP_INSTALLED_PRODUCT = NO; 495 | SYMROOT = "${SRCROOT}/../build"; 496 | VALIDATE_PRODUCT = YES; 497 | }; 498 | name = Release; 499 | }; 500 | 44AD3F191528C74633EE1F5F47CCFCC9 /* Release */ = { 501 | isa = XCBuildConfiguration; 502 | baseConfigurationReference = AED546CE9F7250C3F0FBF067E5BDF5DD /* CLImageViewPopup.xcconfig */; 503 | buildSettings = { 504 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 505 | CURRENT_PROJECT_VERSION = 1; 506 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 507 | DEFINES_MODULE = YES; 508 | DYLIB_COMPATIBILITY_VERSION = 1; 509 | DYLIB_CURRENT_VERSION = 1; 510 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 511 | ENABLE_STRICT_OBJC_MSGSEND = YES; 512 | GCC_NO_COMMON_BLOCKS = YES; 513 | GCC_PREFIX_HEADER = "Target Support Files/CLImageViewPopup/CLImageViewPopup-prefix.pch"; 514 | INFOPLIST_FILE = "Target Support Files/CLImageViewPopup/Info.plist"; 515 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 516 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 517 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 518 | MODULEMAP_FILE = "Target Support Files/CLImageViewPopup/CLImageViewPopup.modulemap"; 519 | MTL_ENABLE_DEBUG_INFO = NO; 520 | PRODUCT_NAME = CLImageViewPopup; 521 | SDKROOT = iphoneos; 522 | SKIP_INSTALL = YES; 523 | SWIFT_VERSION = 3.0; 524 | TARGETED_DEVICE_FAMILY = "1,2"; 525 | VERSIONING_SYSTEM = "apple-generic"; 526 | VERSION_INFO_PREFIX = ""; 527 | }; 528 | name = Release; 529 | }; 530 | 70F0378D63DE3D2DCC739550669BD46A /* Debug */ = { 531 | isa = XCBuildConfiguration; 532 | buildSettings = { 533 | ALWAYS_SEARCH_USER_PATHS = NO; 534 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 535 | CLANG_CXX_LIBRARY = "libc++"; 536 | CLANG_ENABLE_MODULES = YES; 537 | CLANG_ENABLE_OBJC_ARC = YES; 538 | CLANG_WARN_BOOL_CONVERSION = YES; 539 | CLANG_WARN_CONSTANT_CONVERSION = YES; 540 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 541 | CLANG_WARN_EMPTY_BODY = YES; 542 | CLANG_WARN_ENUM_CONVERSION = YES; 543 | CLANG_WARN_INT_CONVERSION = YES; 544 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 545 | CLANG_WARN_UNREACHABLE_CODE = YES; 546 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 547 | COPY_PHASE_STRIP = NO; 548 | ENABLE_TESTABILITY = YES; 549 | GCC_C_LANGUAGE_STANDARD = gnu99; 550 | GCC_DYNAMIC_NO_PIC = NO; 551 | GCC_OPTIMIZATION_LEVEL = 0; 552 | GCC_PREPROCESSOR_DEFINITIONS = ( 553 | "POD_CONFIGURATION_DEBUG=1", 554 | "DEBUG=1", 555 | "$(inherited)", 556 | ); 557 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 558 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 559 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 560 | GCC_WARN_UNDECLARED_SELECTOR = YES; 561 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 562 | GCC_WARN_UNUSED_FUNCTION = YES; 563 | GCC_WARN_UNUSED_VARIABLE = YES; 564 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 565 | ONLY_ACTIVE_ARCH = YES; 566 | STRIP_INSTALLED_PRODUCT = NO; 567 | SYMROOT = "${SRCROOT}/../build"; 568 | }; 569 | name = Debug; 570 | }; 571 | 7ABF0F8B9DF4314B0A7EA056F3AA39BE /* Release */ = { 572 | isa = XCBuildConfiguration; 573 | baseConfigurationReference = EF6F46855B0DE4ADAFA553654FB8BB35 /* Pods-CLImageViewPopup_Tests.release.xcconfig */; 574 | buildSettings = { 575 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 576 | CURRENT_PROJECT_VERSION = 1; 577 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 578 | DEFINES_MODULE = YES; 579 | DYLIB_COMPATIBILITY_VERSION = 1; 580 | DYLIB_CURRENT_VERSION = 1; 581 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 582 | ENABLE_STRICT_OBJC_MSGSEND = YES; 583 | GCC_NO_COMMON_BLOCKS = YES; 584 | INFOPLIST_FILE = "Target Support Files/Pods-CLImageViewPopup_Tests/Info.plist"; 585 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 586 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 587 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 588 | MACH_O_TYPE = staticlib; 589 | MODULEMAP_FILE = "Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.modulemap"; 590 | MTL_ENABLE_DEBUG_INFO = NO; 591 | OTHER_LDFLAGS = ""; 592 | OTHER_LIBTOOLFLAGS = ""; 593 | PODS_ROOT = "$(SRCROOT)"; 594 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 595 | PRODUCT_NAME = Pods_CLImageViewPopup_Tests; 596 | SDKROOT = iphoneos; 597 | SKIP_INSTALL = YES; 598 | SWIFT_VERSION = 3.0; 599 | TARGETED_DEVICE_FAMILY = "1,2"; 600 | VERSIONING_SYSTEM = "apple-generic"; 601 | VERSION_INFO_PREFIX = ""; 602 | }; 603 | name = Release; 604 | }; 605 | A3F4E7941AC67D927F54E98431C7651E /* Debug */ = { 606 | isa = XCBuildConfiguration; 607 | baseConfigurationReference = E8AE6B710A38569D5911C5491ABC8C09 /* Pods-CLImageViewPopup_Example.debug.xcconfig */; 608 | buildSettings = { 609 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 610 | CURRENT_PROJECT_VERSION = 1; 611 | DEBUG_INFORMATION_FORMAT = dwarf; 612 | DEFINES_MODULE = YES; 613 | DYLIB_COMPATIBILITY_VERSION = 1; 614 | DYLIB_CURRENT_VERSION = 1; 615 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 616 | ENABLE_STRICT_OBJC_MSGSEND = YES; 617 | GCC_NO_COMMON_BLOCKS = YES; 618 | INFOPLIST_FILE = "Target Support Files/Pods-CLImageViewPopup_Example/Info.plist"; 619 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 620 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 621 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 622 | MACH_O_TYPE = staticlib; 623 | MODULEMAP_FILE = "Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.modulemap"; 624 | MTL_ENABLE_DEBUG_INFO = YES; 625 | OTHER_LDFLAGS = ""; 626 | OTHER_LIBTOOLFLAGS = ""; 627 | PODS_ROOT = "$(SRCROOT)"; 628 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 629 | PRODUCT_NAME = Pods_CLImageViewPopup_Example; 630 | SDKROOT = iphoneos; 631 | SKIP_INSTALL = YES; 632 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 633 | SWIFT_VERSION = 3.0; 634 | TARGETED_DEVICE_FAMILY = "1,2"; 635 | VERSIONING_SYSTEM = "apple-generic"; 636 | VERSION_INFO_PREFIX = ""; 637 | }; 638 | name = Debug; 639 | }; 640 | E61EF45BC557AA2F43DB89C69E741EE9 /* Debug */ = { 641 | isa = XCBuildConfiguration; 642 | baseConfigurationReference = 018CE3FD246F16631149C64E84F9DC50 /* Pods-CLImageViewPopup_Tests.debug.xcconfig */; 643 | buildSettings = { 644 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 645 | CURRENT_PROJECT_VERSION = 1; 646 | DEBUG_INFORMATION_FORMAT = dwarf; 647 | DEFINES_MODULE = YES; 648 | DYLIB_COMPATIBILITY_VERSION = 1; 649 | DYLIB_CURRENT_VERSION = 1; 650 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 651 | ENABLE_STRICT_OBJC_MSGSEND = YES; 652 | GCC_NO_COMMON_BLOCKS = YES; 653 | INFOPLIST_FILE = "Target Support Files/Pods-CLImageViewPopup_Tests/Info.plist"; 654 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 655 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 656 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 657 | MACH_O_TYPE = staticlib; 658 | MODULEMAP_FILE = "Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.modulemap"; 659 | MTL_ENABLE_DEBUG_INFO = YES; 660 | OTHER_LDFLAGS = ""; 661 | OTHER_LIBTOOLFLAGS = ""; 662 | PODS_ROOT = "$(SRCROOT)"; 663 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 664 | PRODUCT_NAME = Pods_CLImageViewPopup_Tests; 665 | SDKROOT = iphoneos; 666 | SKIP_INSTALL = YES; 667 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 668 | SWIFT_VERSION = 3.0; 669 | TARGETED_DEVICE_FAMILY = "1,2"; 670 | VERSIONING_SYSTEM = "apple-generic"; 671 | VERSION_INFO_PREFIX = ""; 672 | }; 673 | name = Debug; 674 | }; 675 | /* End XCBuildConfiguration section */ 676 | 677 | /* Begin XCConfigurationList section */ 678 | 0D44EB8BF3288A89CA869C9580844252 /* Build configuration list for PBXNativeTarget "CLImageViewPopup" */ = { 679 | isa = XCConfigurationList; 680 | buildConfigurations = ( 681 | 1AF322D94DB15784C24ACD60FFBF92C6 /* Debug */, 682 | 44AD3F191528C74633EE1F5F47CCFCC9 /* Release */, 683 | ); 684 | defaultConfigurationIsVisible = 0; 685 | defaultConfigurationName = Release; 686 | }; 687 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 688 | isa = XCConfigurationList; 689 | buildConfigurations = ( 690 | 70F0378D63DE3D2DCC739550669BD46A /* Debug */, 691 | 372FF5048FF42C3A7A18B70A30D785C1 /* Release */, 692 | ); 693 | defaultConfigurationIsVisible = 0; 694 | defaultConfigurationName = Release; 695 | }; 696 | 4C45F89892D1381F58185A931A2191CE /* Build configuration list for PBXNativeTarget "Pods-CLImageViewPopup_Example" */ = { 697 | isa = XCConfigurationList; 698 | buildConfigurations = ( 699 | A3F4E7941AC67D927F54E98431C7651E /* Debug */, 700 | 00711D378A07A2737C333352046F98FC /* Release */, 701 | ); 702 | defaultConfigurationIsVisible = 0; 703 | defaultConfigurationName = Release; 704 | }; 705 | F7364922AA6F0C6E039C9BC2364FEAD6 /* Build configuration list for PBXNativeTarget "Pods-CLImageViewPopup_Tests" */ = { 706 | isa = XCConfigurationList; 707 | buildConfigurations = ( 708 | E61EF45BC557AA2F43DB89C69E741EE9 /* Debug */, 709 | 7ABF0F8B9DF4314B0A7EA056F3AA39BE /* Release */, 710 | ); 711 | defaultConfigurationIsVisible = 0; 712 | defaultConfigurationName = Release; 713 | }; 714 | /* End XCConfigurationList section */ 715 | }; 716 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 717 | } 718 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/CLImageViewPopup.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 45 | 46 | 52 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 66 | 67 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_CLImageViewPopup : NSObject 3 | @end 4 | @implementation PodsDummy_CLImageViewPopup 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double CLImageViewPopupVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char CLImageViewPopupVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup.modulemap: -------------------------------------------------------------------------------- 1 | framework module CLImageViewPopup { 2 | umbrella header "CLImageViewPopup-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/CLImageViewPopup.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_SHARED_BUILD_DIR/CLImageViewPopup 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_SHARED_BUILD_DIR = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageViewPopup/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## CLImageViewPopup 5 | 6 | Copyright (c) 2016 Vineeth Vijayan 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2016 Vineeth Vijayan <vinbhai4u@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | CLImageViewPopup 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - https://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_CLImageViewPopup_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_CLImageViewPopup_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "$BUILT_PRODUCTS_DIR/CLImageViewPopup/CLImageViewPopup.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "$BUILT_PRODUCTS_DIR/CLImageViewPopup/CLImageViewPopup.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | realpath() { 27 | DIRECTORY="$(cd "${1%/*}" && pwd)" 28 | FILENAME="${1##*/}" 29 | echo "$DIRECTORY/$FILENAME" 30 | } 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 102 | fi 103 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_CLImageViewPopup_ExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_CLImageViewPopup_ExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/CLImageViewPopup" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/CLImageViewPopup/CLImageViewPopup.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "CLImageViewPopup" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_CLImageViewPopup_Example { 2 | umbrella header "Pods-CLImageViewPopup_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Example/Pods-CLImageViewPopup_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/CLImageViewPopup" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/CLImageViewPopup/CLImageViewPopup.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "CLImageViewPopup" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## CLImageViewPopup 5 | 6 | Copyright (c) 2016 Vineeth Vijayan 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2016 Vineeth Vijayan <vinbhai4u@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | CLImageViewPopup 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - https://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_CLImageViewPopup_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_CLImageViewPopup_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "$BUILT_PRODUCTS_DIR/CLImageViewPopup/CLImageViewPopup.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "$BUILT_PRODUCTS_DIR/CLImageViewPopup/CLImageViewPopup.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | realpath() { 27 | DIRECTORY="$(cd "${1%/*}" && pwd)" 28 | FILENAME="${1##*/}" 29 | echo "$DIRECTORY/$FILENAME" 30 | } 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 102 | fi 103 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_CLImageViewPopup_TestsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_CLImageViewPopup_TestsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/CLImageViewPopup" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/CLImageViewPopup/CLImageViewPopup.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "CLImageViewPopup" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_CLImageViewPopup_Tests { 2 | umbrella header "Pods-CLImageViewPopup_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLImageViewPopup_Tests/Pods-CLImageViewPopup_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/CLImageViewPopup" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/CLImageViewPopup/CLImageViewPopup.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "CLImageViewPopup" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import XCTest 3 | import CLImageViewPopup 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | self.measure() { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 Vineeth Vijayan 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CLImageViewPopup 2 | 3 | [![Build Status](https://travis-ci.org/vinbhai4u/CLImageViewPopup.svg?branch=master)](https://travis-ci.org/vinbhai4u/CLImageViewPopup) 4 | [![Version](https://img.shields.io/cocoapods/v/CLImageViewPopup.svg?style=flat)](http://cocoapods.org/pods/CLImageViewPopup) 5 | [![License](https://img.shields.io/cocoapods/l/CLImageViewPopup.svg?style=flat)](http://cocoapods.org/pods/CLImageViewPopup) 6 | [![Platform](https://img.shields.io/cocoapods/p/CLImageViewPopup.svg?style=flat)](http://cocoapods.org/pods/CLImageViewPopup) 7 | 8 | ## Description 9 | 10 | A simple UIImageView for easy fullscreen image pop up. No matter where your UIImageView may be. 11 | Image pops up from where is was and goes back to its original position 12 | 13 | CLImageViewPopup 14 | 15 | ## Example 16 | 17 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 18 | 19 | ## Requirements 20 | 21 | ## Installation 22 | 23 | CLImageViewPopup is available through [CocoaPods](http://cocoapods.org). To install 24 | it, simply add the following line to your Podfile: 25 | 26 | ```ruby 27 | pod "CLImageViewPopup" 28 | ``` 29 | 30 | ## Author 31 | 32 | Vineeth Vijayan, vinbhai4u@gmail.com 33 | 34 | ## License 35 | 36 | CLImageViewPopup is available under the MIT license. See the LICENSE file for more info. 37 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------