├── .gitignore
├── .swiftpm
└── xcode
│ └── package.xcworkspace
│ └── contents.xcworkspacedata
├── .travis.yml
├── Example
├── ISVImageScrollView.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ └── xcshareddata
│ │ └── xcschemes
│ │ └── ISVImageScrollView-Example.xcscheme
├── ISVImageScrollView.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
├── ISVImageScrollView
│ ├── AppDelegate.swift
│ ├── Base.lproj
│ │ ├── LaunchScreen.storyboard
│ │ └── Main.storyboard
│ ├── ISVImageScrollView-Info.plist
│ ├── Images.xcassets
│ │ └── AppIcon.appiconset
│ │ │ └── Contents.json
│ ├── Photo.jpg
│ ├── ViewController.swift
│ └── en.lproj
│ │ └── InfoPlist.strings
├── Podfile
├── Podfile.lock
├── Pods
│ ├── Local Podspecs
│ │ └── ISVImageScrollView.podspec.json
│ ├── Manifest.lock
│ ├── Pods.xcodeproj
│ │ └── project.pbxproj
│ └── Target Support Files
│ │ ├── ISVImageScrollView
│ │ ├── ISVImageScrollView-Info.plist
│ │ ├── ISVImageScrollView-dummy.m
│ │ ├── ISVImageScrollView-prefix.pch
│ │ ├── ISVImageScrollView-umbrella.h
│ │ ├── ISVImageScrollView.debug.xcconfig
│ │ ├── ISVImageScrollView.modulemap
│ │ └── ISVImageScrollView.release.xcconfig
│ │ ├── Pods-ISVImageScrollView_Example
│ │ ├── Pods-ISVImageScrollView_Example-Info.plist
│ │ ├── Pods-ISVImageScrollView_Example-acknowledgements.markdown
│ │ ├── Pods-ISVImageScrollView_Example-acknowledgements.plist
│ │ ├── Pods-ISVImageScrollView_Example-dummy.m
│ │ ├── Pods-ISVImageScrollView_Example-frameworks.sh
│ │ ├── Pods-ISVImageScrollView_Example-umbrella.h
│ │ ├── Pods-ISVImageScrollView_Example.debug.xcconfig
│ │ ├── Pods-ISVImageScrollView_Example.modulemap
│ │ └── Pods-ISVImageScrollView_Example.release.xcconfig
│ │ └── Pods-ISVImageScrollView_Tests
│ │ ├── Pods-ISVImageScrollView_Tests-Info.plist
│ │ ├── Pods-ISVImageScrollView_Tests-acknowledgements.markdown
│ │ ├── Pods-ISVImageScrollView_Tests-acknowledgements.plist
│ │ ├── Pods-ISVImageScrollView_Tests-dummy.m
│ │ ├── Pods-ISVImageScrollView_Tests-umbrella.h
│ │ ├── Pods-ISVImageScrollView_Tests.debug.xcconfig
│ │ ├── Pods-ISVImageScrollView_Tests.modulemap
│ │ └── Pods-ISVImageScrollView_Tests.release.xcconfig
└── Tests
│ ├── Tests-Info.plist
│ ├── Tests-Prefix.pch
│ ├── Tests.m
│ └── en.lproj
│ └── InfoPlist.strings
├── ISVImageScrollView.podspec
├── LICENSE
├── Package.swift
├── README.md
├── Sources
└── ISVImageScrollView
│ └── ISVImageScrollView.swift
└── Tests
├── ISVImageScrollViewTests
├── ISVImageScrollViewTests.swift
└── XCTestManifests.swift
└── LinuxMain.swift
/.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 |
--------------------------------------------------------------------------------
/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.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: xcode7.3
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 -enableCodeCoverage YES -workspace Example/ISVImageScrollView.xcworkspace -scheme ISVImageScrollView-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
14 | - pod lib lint
15 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 1C22AAC3249A3209003CFDF6 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C22AAC2249A3209003CFDF6 /* AppDelegate.swift */; };
11 | 1C22AAC5249A3245003CFDF6 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C22AAC4249A3245003CFDF6 /* ViewController.swift */; };
12 | 28654584CC9E371A48908F56 /* Pods_ISVImageScrollView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B2CA44D2FE60D0C137ADEA4A /* Pods_ISVImageScrollView_Tests.framework */; };
13 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
14 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
15 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
16 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };
17 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };
18 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };
19 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
20 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
21 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
22 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
23 | 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; };
24 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
25 | DE1D6D1B1F9E2EAA0021853B /* Photo.jpg in Resources */ = {isa = PBXBuildFile; fileRef = DE1D6D1A1F9E2EA90021853B /* Photo.jpg */; };
26 | DE66B35168FF792C67A85F75 /* Pods_ISVImageScrollView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C87A34B57258F8162143ED24 /* Pods_ISVImageScrollView_Example.framework */; };
27 | /* End PBXBuildFile section */
28 |
29 | /* Begin PBXContainerItemProxy section */
30 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = {
31 | isa = PBXContainerItemProxy;
32 | containerPortal = 6003F582195388D10070C39A /* Project object */;
33 | proxyType = 1;
34 | remoteGlobalIDString = 6003F589195388D20070C39A;
35 | remoteInfo = ISVImageScrollView;
36 | };
37 | /* End PBXContainerItemProxy section */
38 |
39 | /* Begin PBXFileReference section */
40 | 0A39A4D027A75D7290F3F633 /* Pods-ISVImageScrollView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ISVImageScrollView_Example.debug.xcconfig"; path = "Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example.debug.xcconfig"; sourceTree = ""; };
41 | 1C22AAC2249A3209003CFDF6 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
42 | 1C22AAC4249A3245003CFDF6 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
43 | 6003F58A195388D20070C39A /* ISVImageScrollView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ISVImageScrollView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
44 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
45 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
46 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
47 | 6003F595195388D20070C39A /* ISVImageScrollView-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ISVImageScrollView-Info.plist"; sourceTree = ""; };
48 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; };
49 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; };
50 | 6003F5AE195388D20070C39A /* ISVImageScrollView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ISVImageScrollView_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
51 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
52 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; };
53 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; };
54 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; };
55 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; };
56 | 66051967B40031465ABA54F0 /* ISVImageScrollView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = ISVImageScrollView.podspec; path = ../ISVImageScrollView.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
57 | 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
58 | 80B9FB9A1287F8D1B70BF363 /* Pods-ISVImageScrollView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ISVImageScrollView_Tests.release.xcconfig"; path = "Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests.release.xcconfig"; sourceTree = ""; };
59 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = ""; };
60 | 8A4B3F9336069EE201091D09 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; };
61 | 924408A0C931B7A211C8193E /* Pods-ISVImageScrollView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ISVImageScrollView_Example.release.xcconfig"; path = "Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example.release.xcconfig"; sourceTree = ""; };
62 | A158C28370CEC7DAFFA1315B /* Pods-ISVImageScrollView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ISVImageScrollView_Tests.debug.xcconfig"; path = "Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests.debug.xcconfig"; sourceTree = ""; };
63 | B0DD974B92674C2D5D44EA64 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; };
64 | B2CA44D2FE60D0C137ADEA4A /* Pods_ISVImageScrollView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ISVImageScrollView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
65 | C87A34B57258F8162143ED24 /* Pods_ISVImageScrollView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ISVImageScrollView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
66 | DE1D6D1A1F9E2EA90021853B /* Photo.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = Photo.jpg; sourceTree = ""; };
67 | /* End PBXFileReference section */
68 |
69 | /* Begin PBXFrameworksBuildPhase section */
70 | 6003F587195388D20070C39A /* Frameworks */ = {
71 | isa = PBXFrameworksBuildPhase;
72 | buildActionMask = 2147483647;
73 | files = (
74 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
75 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
76 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
77 | DE66B35168FF792C67A85F75 /* Pods_ISVImageScrollView_Example.framework in Frameworks */,
78 | );
79 | runOnlyForDeploymentPostprocessing = 0;
80 | };
81 | 6003F5AB195388D20070C39A /* Frameworks */ = {
82 | isa = PBXFrameworksBuildPhase;
83 | buildActionMask = 2147483647;
84 | files = (
85 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,
86 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,
87 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,
88 | 28654584CC9E371A48908F56 /* Pods_ISVImageScrollView_Tests.framework in Frameworks */,
89 | );
90 | runOnlyForDeploymentPostprocessing = 0;
91 | };
92 | /* End PBXFrameworksBuildPhase section */
93 |
94 | /* Begin PBXGroup section */
95 | 319441E8EE7E59C7A747F0A4 /* Pods */ = {
96 | isa = PBXGroup;
97 | children = (
98 | 0A39A4D027A75D7290F3F633 /* Pods-ISVImageScrollView_Example.debug.xcconfig */,
99 | 924408A0C931B7A211C8193E /* Pods-ISVImageScrollView_Example.release.xcconfig */,
100 | A158C28370CEC7DAFFA1315B /* Pods-ISVImageScrollView_Tests.debug.xcconfig */,
101 | 80B9FB9A1287F8D1B70BF363 /* Pods-ISVImageScrollView_Tests.release.xcconfig */,
102 | );
103 | path = Pods;
104 | sourceTree = "";
105 | };
106 | 6003F581195388D10070C39A = {
107 | isa = PBXGroup;
108 | children = (
109 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
110 | 6003F593195388D20070C39A /* Example for ISVImageScrollView */,
111 | 6003F5B5195388D20070C39A /* Tests */,
112 | 6003F58C195388D20070C39A /* Frameworks */,
113 | 6003F58B195388D20070C39A /* Products */,
114 | 319441E8EE7E59C7A747F0A4 /* Pods */,
115 | );
116 | sourceTree = "";
117 | };
118 | 6003F58B195388D20070C39A /* Products */ = {
119 | isa = PBXGroup;
120 | children = (
121 | 6003F58A195388D20070C39A /* ISVImageScrollView_Example.app */,
122 | 6003F5AE195388D20070C39A /* ISVImageScrollView_Tests.xctest */,
123 | );
124 | name = Products;
125 | sourceTree = "";
126 | };
127 | 6003F58C195388D20070C39A /* Frameworks */ = {
128 | isa = PBXGroup;
129 | children = (
130 | 6003F58D195388D20070C39A /* Foundation.framework */,
131 | 6003F58F195388D20070C39A /* CoreGraphics.framework */,
132 | 6003F591195388D20070C39A /* UIKit.framework */,
133 | 6003F5AF195388D20070C39A /* XCTest.framework */,
134 | C87A34B57258F8162143ED24 /* Pods_ISVImageScrollView_Example.framework */,
135 | B2CA44D2FE60D0C137ADEA4A /* Pods_ISVImageScrollView_Tests.framework */,
136 | );
137 | name = Frameworks;
138 | sourceTree = "";
139 | };
140 | 6003F593195388D20070C39A /* Example for ISVImageScrollView */ = {
141 | isa = PBXGroup;
142 | children = (
143 | 1C22AAC2249A3209003CFDF6 /* AppDelegate.swift */,
144 | 1C22AAC4249A3245003CFDF6 /* ViewController.swift */,
145 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
146 | 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */,
147 | DE1D6D1A1F9E2EA90021853B /* Photo.jpg */,
148 | 6003F5A8195388D20070C39A /* Images.xcassets */,
149 | 6003F594195388D20070C39A /* Supporting Files */,
150 | );
151 | name = "Example for ISVImageScrollView";
152 | path = ISVImageScrollView;
153 | sourceTree = "";
154 | };
155 | 6003F594195388D20070C39A /* Supporting Files */ = {
156 | isa = PBXGroup;
157 | children = (
158 | 6003F595195388D20070C39A /* ISVImageScrollView-Info.plist */,
159 | 6003F596195388D20070C39A /* InfoPlist.strings */,
160 | );
161 | name = "Supporting Files";
162 | sourceTree = "";
163 | };
164 | 6003F5B5195388D20070C39A /* Tests */ = {
165 | isa = PBXGroup;
166 | children = (
167 | 6003F5BB195388D20070C39A /* Tests.m */,
168 | 6003F5B6195388D20070C39A /* Supporting Files */,
169 | );
170 | path = Tests;
171 | sourceTree = "";
172 | };
173 | 6003F5B6195388D20070C39A /* Supporting Files */ = {
174 | isa = PBXGroup;
175 | children = (
176 | 6003F5B7195388D20070C39A /* Tests-Info.plist */,
177 | 6003F5B8195388D20070C39A /* InfoPlist.strings */,
178 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
179 | );
180 | name = "Supporting Files";
181 | sourceTree = "";
182 | };
183 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
184 | isa = PBXGroup;
185 | children = (
186 | 66051967B40031465ABA54F0 /* ISVImageScrollView.podspec */,
187 | B0DD974B92674C2D5D44EA64 /* README.md */,
188 | 8A4B3F9336069EE201091D09 /* LICENSE */,
189 | );
190 | name = "Podspec Metadata";
191 | sourceTree = "";
192 | };
193 | /* End PBXGroup section */
194 |
195 | /* Begin PBXNativeTarget section */
196 | 6003F589195388D20070C39A /* ISVImageScrollView_Example */ = {
197 | isa = PBXNativeTarget;
198 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "ISVImageScrollView_Example" */;
199 | buildPhases = (
200 | 754E22363E077F938F10E82D /* [CP] Check Pods Manifest.lock */,
201 | 6003F586195388D20070C39A /* Sources */,
202 | 6003F587195388D20070C39A /* Frameworks */,
203 | 6003F588195388D20070C39A /* Resources */,
204 | BA15FCCD0A4177D9A743ED44 /* [CP] Embed Pods Frameworks */,
205 | );
206 | buildRules = (
207 | );
208 | dependencies = (
209 | );
210 | name = ISVImageScrollView_Example;
211 | packageProductDependencies = (
212 | );
213 | productName = ISVImageScrollView;
214 | productReference = 6003F58A195388D20070C39A /* ISVImageScrollView_Example.app */;
215 | productType = "com.apple.product-type.application";
216 | };
217 | 6003F5AD195388D20070C39A /* ISVImageScrollView_Tests */ = {
218 | isa = PBXNativeTarget;
219 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "ISVImageScrollView_Tests" */;
220 | buildPhases = (
221 | EF158E1E4E5B6272E03D2498 /* [CP] Check Pods Manifest.lock */,
222 | 6003F5AA195388D20070C39A /* Sources */,
223 | 6003F5AB195388D20070C39A /* Frameworks */,
224 | 6003F5AC195388D20070C39A /* Resources */,
225 | );
226 | buildRules = (
227 | );
228 | dependencies = (
229 | 6003F5B4195388D20070C39A /* PBXTargetDependency */,
230 | );
231 | name = ISVImageScrollView_Tests;
232 | productName = ISVImageScrollViewTests;
233 | productReference = 6003F5AE195388D20070C39A /* ISVImageScrollView_Tests.xctest */;
234 | productType = "com.apple.product-type.bundle.unit-test";
235 | };
236 | /* End PBXNativeTarget section */
237 |
238 | /* Begin PBXProject section */
239 | 6003F582195388D10070C39A /* Project object */ = {
240 | isa = PBXProject;
241 | attributes = {
242 | CLASSPREFIX = ISV;
243 | LastUpgradeCheck = 0720;
244 | ORGANIZATIONNAME = "kupratsevich@gmail.com";
245 | TargetAttributes = {
246 | 6003F589195388D20070C39A = {
247 | DevelopmentTeam = 2K9L5PGTKE;
248 | LastSwiftMigration = 1150;
249 | };
250 | 6003F5AD195388D20070C39A = {
251 | TestTargetID = 6003F589195388D20070C39A;
252 | };
253 | };
254 | };
255 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "ISVImageScrollView" */;
256 | compatibilityVersion = "Xcode 3.2";
257 | developmentRegion = English;
258 | hasScannedForEncodings = 0;
259 | knownRegions = (
260 | English,
261 | en,
262 | Base,
263 | );
264 | mainGroup = 6003F581195388D10070C39A;
265 | productRefGroup = 6003F58B195388D20070C39A /* Products */;
266 | projectDirPath = "";
267 | projectRoot = "";
268 | targets = (
269 | 6003F589195388D20070C39A /* ISVImageScrollView_Example */,
270 | 6003F5AD195388D20070C39A /* ISVImageScrollView_Tests */,
271 | );
272 | };
273 | /* End PBXProject section */
274 |
275 | /* Begin PBXResourcesBuildPhase section */
276 | 6003F588195388D20070C39A /* Resources */ = {
277 | isa = PBXResourcesBuildPhase;
278 | buildActionMask = 2147483647;
279 | files = (
280 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */,
281 | 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */,
282 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */,
283 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */,
284 | DE1D6D1B1F9E2EAA0021853B /* Photo.jpg in Resources */,
285 | );
286 | runOnlyForDeploymentPostprocessing = 0;
287 | };
288 | 6003F5AC195388D20070C39A /* Resources */ = {
289 | isa = PBXResourcesBuildPhase;
290 | buildActionMask = 2147483647;
291 | files = (
292 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */,
293 | );
294 | runOnlyForDeploymentPostprocessing = 0;
295 | };
296 | /* End PBXResourcesBuildPhase section */
297 |
298 | /* Begin PBXShellScriptBuildPhase section */
299 | 754E22363E077F938F10E82D /* [CP] Check Pods Manifest.lock */ = {
300 | isa = PBXShellScriptBuildPhase;
301 | buildActionMask = 2147483647;
302 | files = (
303 | );
304 | inputFileListPaths = (
305 | );
306 | inputPaths = (
307 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
308 | "${PODS_ROOT}/Manifest.lock",
309 | );
310 | name = "[CP] Check Pods Manifest.lock";
311 | outputFileListPaths = (
312 | );
313 | outputPaths = (
314 | "$(DERIVED_FILE_DIR)/Pods-ISVImageScrollView_Example-checkManifestLockResult.txt",
315 | );
316 | runOnlyForDeploymentPostprocessing = 0;
317 | shellPath = /bin/sh;
318 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
319 | showEnvVarsInLog = 0;
320 | };
321 | BA15FCCD0A4177D9A743ED44 /* [CP] Embed Pods Frameworks */ = {
322 | isa = PBXShellScriptBuildPhase;
323 | buildActionMask = 2147483647;
324 | files = (
325 | );
326 | inputPaths = (
327 | "${PODS_ROOT}/Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example-frameworks.sh",
328 | "${BUILT_PRODUCTS_DIR}/ISVImageScrollView/ISVImageScrollView.framework",
329 | );
330 | name = "[CP] Embed Pods Frameworks";
331 | outputPaths = (
332 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ISVImageScrollView.framework",
333 | );
334 | runOnlyForDeploymentPostprocessing = 0;
335 | shellPath = /bin/sh;
336 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example-frameworks.sh\"\n";
337 | showEnvVarsInLog = 0;
338 | };
339 | EF158E1E4E5B6272E03D2498 /* [CP] Check Pods Manifest.lock */ = {
340 | isa = PBXShellScriptBuildPhase;
341 | buildActionMask = 2147483647;
342 | files = (
343 | );
344 | inputFileListPaths = (
345 | );
346 | inputPaths = (
347 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
348 | "${PODS_ROOT}/Manifest.lock",
349 | );
350 | name = "[CP] Check Pods Manifest.lock";
351 | outputFileListPaths = (
352 | );
353 | outputPaths = (
354 | "$(DERIVED_FILE_DIR)/Pods-ISVImageScrollView_Tests-checkManifestLockResult.txt",
355 | );
356 | runOnlyForDeploymentPostprocessing = 0;
357 | shellPath = /bin/sh;
358 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
359 | showEnvVarsInLog = 0;
360 | };
361 | /* End PBXShellScriptBuildPhase section */
362 |
363 | /* Begin PBXSourcesBuildPhase section */
364 | 6003F586195388D20070C39A /* Sources */ = {
365 | isa = PBXSourcesBuildPhase;
366 | buildActionMask = 2147483647;
367 | files = (
368 | 1C22AAC5249A3245003CFDF6 /* ViewController.swift in Sources */,
369 | 1C22AAC3249A3209003CFDF6 /* AppDelegate.swift in Sources */,
370 | );
371 | runOnlyForDeploymentPostprocessing = 0;
372 | };
373 | 6003F5AA195388D20070C39A /* Sources */ = {
374 | isa = PBXSourcesBuildPhase;
375 | buildActionMask = 2147483647;
376 | files = (
377 | 6003F5BC195388D20070C39A /* Tests.m in Sources */,
378 | );
379 | runOnlyForDeploymentPostprocessing = 0;
380 | };
381 | /* End PBXSourcesBuildPhase section */
382 |
383 | /* Begin PBXTargetDependency section */
384 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = {
385 | isa = PBXTargetDependency;
386 | target = 6003F589195388D20070C39A /* ISVImageScrollView_Example */;
387 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */;
388 | };
389 | /* End PBXTargetDependency section */
390 |
391 | /* Begin PBXVariantGroup section */
392 | 6003F596195388D20070C39A /* InfoPlist.strings */ = {
393 | isa = PBXVariantGroup;
394 | children = (
395 | 6003F597195388D20070C39A /* en */,
396 | );
397 | name = InfoPlist.strings;
398 | sourceTree = "";
399 | };
400 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = {
401 | isa = PBXVariantGroup;
402 | children = (
403 | 6003F5B9195388D20070C39A /* en */,
404 | );
405 | name = InfoPlist.strings;
406 | sourceTree = "";
407 | };
408 | 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = {
409 | isa = PBXVariantGroup;
410 | children = (
411 | 71719F9E1E33DC2100824A3D /* Base */,
412 | );
413 | name = LaunchScreen.storyboard;
414 | sourceTree = "";
415 | };
416 | /* End PBXVariantGroup section */
417 |
418 | /* Begin XCBuildConfiguration section */
419 | 6003F5BD195388D20070C39A /* Debug */ = {
420 | isa = XCBuildConfiguration;
421 | buildSettings = {
422 | ALWAYS_SEARCH_USER_PATHS = NO;
423 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
424 | CLANG_CXX_LIBRARY = "libc++";
425 | CLANG_ENABLE_MODULES = YES;
426 | CLANG_ENABLE_OBJC_ARC = YES;
427 | CLANG_WARN_BOOL_CONVERSION = YES;
428 | CLANG_WARN_CONSTANT_CONVERSION = YES;
429 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
430 | CLANG_WARN_EMPTY_BODY = YES;
431 | CLANG_WARN_ENUM_CONVERSION = YES;
432 | CLANG_WARN_INT_CONVERSION = YES;
433 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
434 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
435 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
436 | COPY_PHASE_STRIP = NO;
437 | ENABLE_TESTABILITY = YES;
438 | GCC_C_LANGUAGE_STANDARD = gnu99;
439 | GCC_DYNAMIC_NO_PIC = NO;
440 | GCC_OPTIMIZATION_LEVEL = 0;
441 | GCC_PREPROCESSOR_DEFINITIONS = (
442 | "DEBUG=1",
443 | "$(inherited)",
444 | );
445 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
446 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
447 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
448 | GCC_WARN_UNDECLARED_SELECTOR = YES;
449 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
450 | GCC_WARN_UNUSED_FUNCTION = YES;
451 | GCC_WARN_UNUSED_VARIABLE = YES;
452 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
453 | ONLY_ACTIVE_ARCH = YES;
454 | SDKROOT = iphoneos;
455 | TARGETED_DEVICE_FAMILY = "1,2";
456 | };
457 | name = Debug;
458 | };
459 | 6003F5BE195388D20070C39A /* Release */ = {
460 | isa = XCBuildConfiguration;
461 | buildSettings = {
462 | ALWAYS_SEARCH_USER_PATHS = NO;
463 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
464 | CLANG_CXX_LIBRARY = "libc++";
465 | CLANG_ENABLE_MODULES = YES;
466 | CLANG_ENABLE_OBJC_ARC = YES;
467 | CLANG_WARN_BOOL_CONVERSION = YES;
468 | CLANG_WARN_CONSTANT_CONVERSION = YES;
469 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
470 | CLANG_WARN_EMPTY_BODY = YES;
471 | CLANG_WARN_ENUM_CONVERSION = YES;
472 | CLANG_WARN_INT_CONVERSION = YES;
473 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
474 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
475 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
476 | COPY_PHASE_STRIP = YES;
477 | ENABLE_NS_ASSERTIONS = NO;
478 | GCC_C_LANGUAGE_STANDARD = gnu99;
479 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
480 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
481 | GCC_WARN_UNDECLARED_SELECTOR = YES;
482 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
483 | GCC_WARN_UNUSED_FUNCTION = YES;
484 | GCC_WARN_UNUSED_VARIABLE = YES;
485 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
486 | SDKROOT = iphoneos;
487 | TARGETED_DEVICE_FAMILY = "1,2";
488 | VALIDATE_PRODUCT = YES;
489 | };
490 | name = Release;
491 | };
492 | 6003F5C0195388D20070C39A /* Debug */ = {
493 | isa = XCBuildConfiguration;
494 | baseConfigurationReference = 0A39A4D027A75D7290F3F633 /* Pods-ISVImageScrollView_Example.debug.xcconfig */;
495 | buildSettings = {
496 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
497 | CLANG_ENABLE_MODULES = YES;
498 | DEVELOPMENT_TEAM = 2K9L5PGTKE;
499 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
500 | GCC_PREFIX_HEADER = "ISVImageScrollView/ISVImageScrollView-Prefix.pch";
501 | INFOPLIST_FILE = "ISVImageScrollView/ISVImageScrollView-Info.plist";
502 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
503 | MODULE_NAME = ExampleApp;
504 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
505 | PRODUCT_NAME = "$(TARGET_NAME)";
506 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
507 | SWIFT_VERSION = 5.0;
508 | WRAPPER_EXTENSION = app;
509 | };
510 | name = Debug;
511 | };
512 | 6003F5C1195388D20070C39A /* Release */ = {
513 | isa = XCBuildConfiguration;
514 | baseConfigurationReference = 924408A0C931B7A211C8193E /* Pods-ISVImageScrollView_Example.release.xcconfig */;
515 | buildSettings = {
516 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
517 | CLANG_ENABLE_MODULES = YES;
518 | DEVELOPMENT_TEAM = 2K9L5PGTKE;
519 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
520 | GCC_PREFIX_HEADER = "ISVImageScrollView/ISVImageScrollView-Prefix.pch";
521 | INFOPLIST_FILE = "ISVImageScrollView/ISVImageScrollView-Info.plist";
522 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
523 | MODULE_NAME = ExampleApp;
524 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
525 | PRODUCT_NAME = "$(TARGET_NAME)";
526 | SWIFT_VERSION = 5.0;
527 | WRAPPER_EXTENSION = app;
528 | };
529 | name = Release;
530 | };
531 | 6003F5C3195388D20070C39A /* Debug */ = {
532 | isa = XCBuildConfiguration;
533 | baseConfigurationReference = A158C28370CEC7DAFFA1315B /* Pods-ISVImageScrollView_Tests.debug.xcconfig */;
534 | buildSettings = {
535 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
536 | BUNDLE_LOADER = "$(TEST_HOST)";
537 | FRAMEWORK_SEARCH_PATHS = (
538 | "$(SDKROOT)/Developer/Library/Frameworks",
539 | "$(inherited)",
540 | "$(DEVELOPER_FRAMEWORKS_DIR)",
541 | );
542 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
543 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
544 | GCC_PREPROCESSOR_DEFINITIONS = (
545 | "DEBUG=1",
546 | "$(inherited)",
547 | );
548 | INFOPLIST_FILE = "Tests/Tests-Info.plist";
549 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
550 | PRODUCT_NAME = "$(TARGET_NAME)";
551 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ISVImageScrollView_Example.app/ISVImageScrollView_Example";
552 | WRAPPER_EXTENSION = xctest;
553 | };
554 | name = Debug;
555 | };
556 | 6003F5C4195388D20070C39A /* Release */ = {
557 | isa = XCBuildConfiguration;
558 | baseConfigurationReference = 80B9FB9A1287F8D1B70BF363 /* Pods-ISVImageScrollView_Tests.release.xcconfig */;
559 | buildSettings = {
560 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
561 | BUNDLE_LOADER = "$(TEST_HOST)";
562 | FRAMEWORK_SEARCH_PATHS = (
563 | "$(SDKROOT)/Developer/Library/Frameworks",
564 | "$(inherited)",
565 | "$(DEVELOPER_FRAMEWORKS_DIR)",
566 | );
567 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
568 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
569 | INFOPLIST_FILE = "Tests/Tests-Info.plist";
570 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
571 | PRODUCT_NAME = "$(TARGET_NAME)";
572 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ISVImageScrollView_Example.app/ISVImageScrollView_Example";
573 | WRAPPER_EXTENSION = xctest;
574 | };
575 | name = Release;
576 | };
577 | /* End XCBuildConfiguration section */
578 |
579 | /* Begin XCConfigurationList section */
580 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "ISVImageScrollView" */ = {
581 | isa = XCConfigurationList;
582 | buildConfigurations = (
583 | 6003F5BD195388D20070C39A /* Debug */,
584 | 6003F5BE195388D20070C39A /* Release */,
585 | );
586 | defaultConfigurationIsVisible = 0;
587 | defaultConfigurationName = Release;
588 | };
589 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "ISVImageScrollView_Example" */ = {
590 | isa = XCConfigurationList;
591 | buildConfigurations = (
592 | 6003F5C0195388D20070C39A /* Debug */,
593 | 6003F5C1195388D20070C39A /* Release */,
594 | );
595 | defaultConfigurationIsVisible = 0;
596 | defaultConfigurationName = Release;
597 | };
598 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "ISVImageScrollView_Tests" */ = {
599 | isa = XCConfigurationList;
600 | buildConfigurations = (
601 | 6003F5C3195388D20070C39A /* Debug */,
602 | 6003F5C4195388D20070C39A /* Release */,
603 | );
604 | defaultConfigurationIsVisible = 0;
605 | defaultConfigurationName = Release;
606 | };
607 | /* End XCConfigurationList section */
608 | };
609 | rootObject = 6003F582195388D10070C39A /* Project object */;
610 | }
611 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView.xcodeproj/xcshareddata/xcschemes/ISVImageScrollView-Example.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
49 |
50 |
51 |
52 |
53 |
54 |
64 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
83 |
85 |
91 |
92 |
93 |
94 |
96 |
97 |
100 |
101 |
102 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // ISVImageScrollView_Example
4 | //
5 | // Created by Yurii Kupratsevych on 17.06.2020.
6 | // Copyright © 2020 kupratsevich@gmail.com. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | @UIApplicationMain
12 | class AppDelegate: UIResponder, UIApplicationDelegate {
13 | var window: UIWindow?
14 | }
15 |
16 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView/Base.lproj/LaunchScreen.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 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView/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 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView/ISVImageScrollView-Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | ${PRODUCT_NAME}
9 | CFBundleExecutable
10 | ${EXECUTABLE_NAME}
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | ${PRODUCT_NAME}
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 1.0
25 | LSRequiresIPhoneOS
26 |
27 | UILaunchStoryboardName
28 | LaunchScreen
29 | UIMainStoryboardFile
30 | Main
31 | UIRequiredDeviceCapabilities
32 |
33 | armv7
34 |
35 | UISupportedInterfaceOrientations
36 |
37 | UIInterfaceOrientationPortrait
38 | UIInterfaceOrientationLandscapeLeft
39 | UIInterfaceOrientationLandscapeRight
40 | UIInterfaceOrientationPortraitUpsideDown
41 |
42 | UISupportedInterfaceOrientations~ipad
43 |
44 | UIInterfaceOrientationPortrait
45 | UIInterfaceOrientationPortraitUpsideDown
46 | UIInterfaceOrientationLandscapeLeft
47 | UIInterfaceOrientationLandscapeRight
48 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "20x20",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "20x20",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "29x29",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "29x29",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "40x40",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "40x40",
31 | "scale" : "3x"
32 | },
33 | {
34 | "idiom" : "iphone",
35 | "size" : "60x60",
36 | "scale" : "2x"
37 | },
38 | {
39 | "idiom" : "iphone",
40 | "size" : "60x60",
41 | "scale" : "3x"
42 | },
43 | {
44 | "idiom" : "ipad",
45 | "size" : "20x20",
46 | "scale" : "1x"
47 | },
48 | {
49 | "idiom" : "ipad",
50 | "size" : "20x20",
51 | "scale" : "2x"
52 | },
53 | {
54 | "idiom" : "ipad",
55 | "size" : "29x29",
56 | "scale" : "1x"
57 | },
58 | {
59 | "idiom" : "ipad",
60 | "size" : "29x29",
61 | "scale" : "2x"
62 | },
63 | {
64 | "idiom" : "ipad",
65 | "size" : "40x40",
66 | "scale" : "1x"
67 | },
68 | {
69 | "idiom" : "ipad",
70 | "size" : "40x40",
71 | "scale" : "2x"
72 | },
73 | {
74 | "idiom" : "ipad",
75 | "size" : "76x76",
76 | "scale" : "1x"
77 | },
78 | {
79 | "idiom" : "ipad",
80 | "size" : "76x76",
81 | "scale" : "2x"
82 | },
83 | {
84 | "idiom" : "ipad",
85 | "size" : "83.5x83.5",
86 | "scale" : "2x"
87 | },
88 | {
89 | "idiom" : "ios-marketing",
90 | "size" : "1024x1024",
91 | "scale" : "1x"
92 | }
93 | ],
94 | "info" : {
95 | "version" : 1,
96 | "author" : "xcode"
97 | }
98 | }
--------------------------------------------------------------------------------
/Example/ISVImageScrollView/Photo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yuriiik/ISVImageScrollView/1202f148508c5498e0d8948b803083e2a091de82/Example/ISVImageScrollView/Photo.jpg
--------------------------------------------------------------------------------
/Example/ISVImageScrollView/ViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // ISVImageScrollView_Example
4 | //
5 | // Created by Yurii Kupratsevych on 17.06.2020.
6 | // Copyright © 2020 kupratsevich@gmail.com. All rights reserved.
7 | //
8 |
9 | import UIKit
10 | import ISVImageScrollView
11 |
12 | class ViewController: UIViewController, UIScrollViewDelegate {
13 |
14 | @IBOutlet weak var imageScrollView: ISVImageScrollView!
15 | private var imageView: UIImageView?
16 |
17 | override func viewDidLoad() {
18 | super.viewDidLoad()
19 | let image = UIImage(named: "Photo.jpg")
20 | self.imageView = UIImageView(image: image)
21 | self.imageScrollView.imageView = self.imageView
22 | self.imageScrollView.maximumZoomScale = 4.0
23 | self.imageScrollView.delegate = self
24 | }
25 |
26 | override var prefersStatusBarHidden: Bool {
27 | return true
28 | }
29 |
30 | // MARK: - UIScrollViewDelegate
31 |
32 | func viewForZooming(in scrollView: UIScrollView) -> UIView? {
33 | return self.imageView
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/Example/ISVImageScrollView/en.lproj/InfoPlist.strings:
--------------------------------------------------------------------------------
1 | /* Localized versions of Info.plist keys */
2 |
3 |
--------------------------------------------------------------------------------
/Example/Podfile:
--------------------------------------------------------------------------------
1 | use_frameworks!
2 |
3 | target 'ISVImageScrollView_Example' do
4 | pod 'ISVImageScrollView', :path => '../'
5 |
6 | target 'ISVImageScrollView_Tests' do
7 | inherit! :search_paths
8 | end
9 | end
10 |
--------------------------------------------------------------------------------
/Example/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - ISVImageScrollView (0.3.0)
3 |
4 | DEPENDENCIES:
5 | - ISVImageScrollView (from `../`)
6 |
7 | EXTERNAL SOURCES:
8 | ISVImageScrollView:
9 | :path: "../"
10 |
11 | SPEC CHECKSUMS:
12 | ISVImageScrollView: 2c89840496647af985bfc0e09b346b9aa733ecec
13 |
14 | PODFILE CHECKSUM: 4744aa60aeb8810abf35643611a82180bdf82304
15 |
16 | COCOAPODS: 1.9.1
17 |
--------------------------------------------------------------------------------
/Example/Pods/Local Podspecs/ISVImageScrollView.podspec.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "ISVImageScrollView",
3 | "version": "0.3.0",
4 | "summary": "A subclass of the UIScrollView tweaked for image preview with zooming, scrolling and rotation support.",
5 | "description": "When you need to incorporate an image preview into your application, usually you start with the UIScrollView and then spend hours tweaking it to get functionality similar to the default Photos app.\nThis control provides you out-of-the-box functionality to zoom, scroll and rotate an UIImageView attached to it.",
6 | "homepage": "https://github.com/yuriiik/ISVImageScrollView",
7 | "license": {
8 | "type": "MIT",
9 | "file": "LICENSE"
10 | },
11 | "authors": {
12 | "Yurii Kupratsevych": "kupratsevich@gmail.com"
13 | },
14 | "source": {
15 | "git": "https://github.com/yuriiik/ISVImageScrollView.git",
16 | "tag": "0.3.0"
17 | },
18 | "platforms": {
19 | "ios": "8.0"
20 | },
21 | "source_files": "Sources/ISVImageScrollView/**/*"
22 | }
23 |
--------------------------------------------------------------------------------
/Example/Pods/Manifest.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - ISVImageScrollView (0.3.0)
3 |
4 | DEPENDENCIES:
5 | - ISVImageScrollView (from `../`)
6 |
7 | EXTERNAL SOURCES:
8 | ISVImageScrollView:
9 | :path: "../"
10 |
11 | SPEC CHECKSUMS:
12 | ISVImageScrollView: 2c89840496647af985bfc0e09b346b9aa733ecec
13 |
14 | PODFILE CHECKSUM: 4744aa60aeb8810abf35643611a82180bdf82304
15 |
16 | COCOAPODS: 1.9.1
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 | 147456588C964750BFBA8190DDCCD69D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
11 | 17299A175C109ACA71F3C5FFD9AF4E97 /* Pods-ISVImageScrollView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DA27E874FD18789224AC2CF47C9BA881 /* Pods-ISVImageScrollView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
12 | 261CEE1A857C03650BC821BD01B73DF4 /* ISVImageScrollView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DD9DDC3BF7C64A22E8C0C27D35EA3CDF /* ISVImageScrollView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
13 | 79A8F87A63A68EB8F6775CF9EB578C8B /* ISVImageScrollView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B0C8591B481F94D4B35D6161B94B237 /* ISVImageScrollView-dummy.m */; };
14 | 8D0E0D9B641A41442CB859928697D45B /* Pods-ISVImageScrollView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 86AE5F2B7A26839D8B7E92AEAE4D4B55 /* Pods-ISVImageScrollView_Tests-dummy.m */; };
15 | 8FE58BEA3CA722826917AA229B4FECC8 /* ISVImageScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA34A1E4CB9B65D3799B6E5D83586CC9 /* ISVImageScrollView.swift */; };
16 | C61786C5449BF48F577151C66BC6482D /* Pods-ISVImageScrollView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B3DD5008EE87CD232FE92D8C632286E5 /* Pods-ISVImageScrollView_Example-dummy.m */; };
17 | F244CE614B6B07DC1A940F91142A1848 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
18 | F50A99598E9E3911E4AC3E325012F871 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
19 | FE053EBC3C02B256D91D5E2E071C31A1 /* Pods-ISVImageScrollView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A800183F90C645F508238FECA2C8E044 /* Pods-ISVImageScrollView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
20 | /* End PBXBuildFile section */
21 |
22 | /* Begin PBXContainerItemProxy section */
23 | 43B6A742C55F4A3CDCE6E198F5BC14BA /* PBXContainerItemProxy */ = {
24 | isa = PBXContainerItemProxy;
25 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
26 | proxyType = 1;
27 | remoteGlobalIDString = 39DDEE16D67487C83D019D3B34AD9098;
28 | remoteInfo = "Pods-ISVImageScrollView_Example";
29 | };
30 | 81BBA05AA879C7668A2448E9CBE7EBB3 /* PBXContainerItemProxy */ = {
31 | isa = PBXContainerItemProxy;
32 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
33 | proxyType = 1;
34 | remoteGlobalIDString = F5DD8A1A2674CEC9EE0ECEDD288E1A4E;
35 | remoteInfo = ISVImageScrollView;
36 | };
37 | /* End PBXContainerItemProxy section */
38 |
39 | /* Begin PBXFileReference section */
40 | 11E47E193A3D94DEA136F47742A594AE /* ISVImageScrollView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ISVImageScrollView.release.xcconfig; sourceTree = ""; };
41 | 15FFEA8925D78ED5A1A5E04416088BAF /* ISVImageScrollView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ISVImageScrollView-prefix.pch"; sourceTree = ""; };
42 | 19428CEC696C12440C58723FEE8B7800 /* Pods-ISVImageScrollView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ISVImageScrollView_Tests.release.xcconfig"; sourceTree = ""; };
43 | 20C8A2C2366F21FD436FEC41E9EE5CAE /* Pods-ISVImageScrollView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ISVImageScrollView_Example.release.xcconfig"; sourceTree = ""; };
44 | 2EDE247D91BDED635555ECBE85A078B9 /* Pods-ISVImageScrollView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ISVImageScrollView_Tests.debug.xcconfig"; sourceTree = ""; };
45 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
46 | 3D7344CBA9E53E976F602F2EE73B5A88 /* ISVImageScrollView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = ISVImageScrollView.framework; path = ISVImageScrollView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
47 | 3EA78C10CDCCECBE95A7EC9E79E49389 /* Pods-ISVImageScrollView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ISVImageScrollView_Example.modulemap"; sourceTree = ""; };
48 | 4378F2FA03993BAFC65221E2036C5910 /* ISVImageScrollView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ISVImageScrollView-Info.plist"; sourceTree = ""; };
49 | 4626DF538C299E0B4CDB0254503FC356 /* Pods-ISVImageScrollView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ISVImageScrollView_Tests-acknowledgements.plist"; sourceTree = ""; };
50 | 4F48F2AF7876D562989849C976814F31 /* Pods-ISVImageScrollView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ISVImageScrollView_Tests-acknowledgements.markdown"; sourceTree = ""; };
51 | 50000C74ED665D23416BAF3F31594580 /* Pods-ISVImageScrollView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ISVImageScrollView_Example-acknowledgements.markdown"; sourceTree = ""; };
52 | 50362237B293A92359E6CB9ABB7569C1 /* ISVImageScrollView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ISVImageScrollView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
53 | 5DBC2E5EC45B01A0B351F4719BB9C16E /* Pods-ISVImageScrollView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ISVImageScrollView_Example-acknowledgements.plist"; sourceTree = ""; };
54 | 5F6C9CD4E3F151B2B6D37E8A47C02A80 /* ISVImageScrollView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ISVImageScrollView.modulemap; sourceTree = ""; };
55 | 632993ED324D92F8B9E490E6BE1F460A /* ISVImageScrollView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ISVImageScrollView.debug.xcconfig; sourceTree = ""; };
56 | 6A797C0DFC05C9F337323DA466867E18 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; };
57 | 6E0FDE243F2B4ACDC8403D894C264C6F /* Pods-ISVImageScrollView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ISVImageScrollView_Example.debug.xcconfig"; sourceTree = ""; };
58 | 7B0C8591B481F94D4B35D6161B94B237 /* ISVImageScrollView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ISVImageScrollView-dummy.m"; sourceTree = ""; };
59 | 83CADBED935A8E375980E1E8AE22CD1B /* Pods-ISVImageScrollView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ISVImageScrollView_Example-frameworks.sh"; sourceTree = ""; };
60 | 86AE5F2B7A26839D8B7E92AEAE4D4B55 /* Pods-ISVImageScrollView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ISVImageScrollView_Tests-dummy.m"; sourceTree = ""; };
61 | 98DAECC9D89700405E89A6496992082A /* Pods_ISVImageScrollView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_ISVImageScrollView_Example.framework; path = "Pods-ISVImageScrollView_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
62 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
63 | A800183F90C645F508238FECA2C8E044 /* Pods-ISVImageScrollView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ISVImageScrollView_Example-umbrella.h"; sourceTree = ""; };
64 | B3DD5008EE87CD232FE92D8C632286E5 /* Pods-ISVImageScrollView_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ISVImageScrollView_Example-dummy.m"; sourceTree = ""; };
65 | DA27E874FD18789224AC2CF47C9BA881 /* Pods-ISVImageScrollView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ISVImageScrollView_Tests-umbrella.h"; sourceTree = ""; };
66 | DD9DDC3BF7C64A22E8C0C27D35EA3CDF /* ISVImageScrollView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ISVImageScrollView-umbrella.h"; sourceTree = ""; };
67 | DE520341CD0B9BB9AA7DC28C84C18C94 /* Pods_ISVImageScrollView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_ISVImageScrollView_Tests.framework; path = "Pods-ISVImageScrollView_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
68 | EA34A1E4CB9B65D3799B6E5D83586CC9 /* ISVImageScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISVImageScrollView.swift; path = Sources/ISVImageScrollView/ISVImageScrollView.swift; sourceTree = ""; };
69 | F071B2A042329895B26467375C710E31 /* Pods-ISVImageScrollView_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ISVImageScrollView_Example-Info.plist"; sourceTree = ""; };
70 | F6847034E3F33512DEC061CFC859E1D9 /* Pods-ISVImageScrollView_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ISVImageScrollView_Tests-Info.plist"; sourceTree = ""; };
71 | FA08FA85352B1105CB83DBC2735D0E24 /* Pods-ISVImageScrollView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ISVImageScrollView_Tests.modulemap"; sourceTree = ""; };
72 | FF8E31C7F41A37CC6B3A9C6AE623A684 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; };
73 | /* End PBXFileReference section */
74 |
75 | /* Begin PBXFrameworksBuildPhase section */
76 | 3263D865483B8FEB05BE89728282283E /* Frameworks */ = {
77 | isa = PBXFrameworksBuildPhase;
78 | buildActionMask = 2147483647;
79 | files = (
80 | F50A99598E9E3911E4AC3E325012F871 /* Foundation.framework in Frameworks */,
81 | );
82 | runOnlyForDeploymentPostprocessing = 0;
83 | };
84 | BF887476A433D7389896DC3B543AA815 /* Frameworks */ = {
85 | isa = PBXFrameworksBuildPhase;
86 | buildActionMask = 2147483647;
87 | files = (
88 | F244CE614B6B07DC1A940F91142A1848 /* Foundation.framework in Frameworks */,
89 | );
90 | runOnlyForDeploymentPostprocessing = 0;
91 | };
92 | D950829C2D01997BDA2D964B71720410 /* Frameworks */ = {
93 | isa = PBXFrameworksBuildPhase;
94 | buildActionMask = 2147483647;
95 | files = (
96 | 147456588C964750BFBA8190DDCCD69D /* Foundation.framework in Frameworks */,
97 | );
98 | runOnlyForDeploymentPostprocessing = 0;
99 | };
100 | /* End PBXFrameworksBuildPhase section */
101 |
102 | /* Begin PBXGroup section */
103 | 272BF1FD64B59D1B60DF0F5D4F0701EF /* Support Files */ = {
104 | isa = PBXGroup;
105 | children = (
106 | 5F6C9CD4E3F151B2B6D37E8A47C02A80 /* ISVImageScrollView.modulemap */,
107 | 7B0C8591B481F94D4B35D6161B94B237 /* ISVImageScrollView-dummy.m */,
108 | 4378F2FA03993BAFC65221E2036C5910 /* ISVImageScrollView-Info.plist */,
109 | 15FFEA8925D78ED5A1A5E04416088BAF /* ISVImageScrollView-prefix.pch */,
110 | DD9DDC3BF7C64A22E8C0C27D35EA3CDF /* ISVImageScrollView-umbrella.h */,
111 | 632993ED324D92F8B9E490E6BE1F460A /* ISVImageScrollView.debug.xcconfig */,
112 | 11E47E193A3D94DEA136F47742A594AE /* ISVImageScrollView.release.xcconfig */,
113 | );
114 | name = "Support Files";
115 | path = "Example/Pods/Target Support Files/ISVImageScrollView";
116 | sourceTree = "";
117 | };
118 | 2BE4F2738EE1E3E8E414D503CDD1C62D /* Targets Support Files */ = {
119 | isa = PBXGroup;
120 | children = (
121 | 41313A134563B00E91A3DA499682FCA3 /* Pods-ISVImageScrollView_Example */,
122 | 6806A20D070FF5134A7D80CACC143127 /* Pods-ISVImageScrollView_Tests */,
123 | );
124 | name = "Targets Support Files";
125 | sourceTree = "";
126 | };
127 | 41313A134563B00E91A3DA499682FCA3 /* Pods-ISVImageScrollView_Example */ = {
128 | isa = PBXGroup;
129 | children = (
130 | 3EA78C10CDCCECBE95A7EC9E79E49389 /* Pods-ISVImageScrollView_Example.modulemap */,
131 | 50000C74ED665D23416BAF3F31594580 /* Pods-ISVImageScrollView_Example-acknowledgements.markdown */,
132 | 5DBC2E5EC45B01A0B351F4719BB9C16E /* Pods-ISVImageScrollView_Example-acknowledgements.plist */,
133 | B3DD5008EE87CD232FE92D8C632286E5 /* Pods-ISVImageScrollView_Example-dummy.m */,
134 | 83CADBED935A8E375980E1E8AE22CD1B /* Pods-ISVImageScrollView_Example-frameworks.sh */,
135 | F071B2A042329895B26467375C710E31 /* Pods-ISVImageScrollView_Example-Info.plist */,
136 | A800183F90C645F508238FECA2C8E044 /* Pods-ISVImageScrollView_Example-umbrella.h */,
137 | 6E0FDE243F2B4ACDC8403D894C264C6F /* Pods-ISVImageScrollView_Example.debug.xcconfig */,
138 | 20C8A2C2366F21FD436FEC41E9EE5CAE /* Pods-ISVImageScrollView_Example.release.xcconfig */,
139 | );
140 | name = "Pods-ISVImageScrollView_Example";
141 | path = "Target Support Files/Pods-ISVImageScrollView_Example";
142 | sourceTree = "";
143 | };
144 | 54F5C38C7ABAFD6532C8B7DA88B8B595 /* Development Pods */ = {
145 | isa = PBXGroup;
146 | children = (
147 | EF49415AC1008ECFB8C480FBF6D287E2 /* ISVImageScrollView */,
148 | );
149 | name = "Development Pods";
150 | sourceTree = "";
151 | };
152 | 6806A20D070FF5134A7D80CACC143127 /* Pods-ISVImageScrollView_Tests */ = {
153 | isa = PBXGroup;
154 | children = (
155 | FA08FA85352B1105CB83DBC2735D0E24 /* Pods-ISVImageScrollView_Tests.modulemap */,
156 | 4F48F2AF7876D562989849C976814F31 /* Pods-ISVImageScrollView_Tests-acknowledgements.markdown */,
157 | 4626DF538C299E0B4CDB0254503FC356 /* Pods-ISVImageScrollView_Tests-acknowledgements.plist */,
158 | 86AE5F2B7A26839D8B7E92AEAE4D4B55 /* Pods-ISVImageScrollView_Tests-dummy.m */,
159 | F6847034E3F33512DEC061CFC859E1D9 /* Pods-ISVImageScrollView_Tests-Info.plist */,
160 | DA27E874FD18789224AC2CF47C9BA881 /* Pods-ISVImageScrollView_Tests-umbrella.h */,
161 | 2EDE247D91BDED635555ECBE85A078B9 /* Pods-ISVImageScrollView_Tests.debug.xcconfig */,
162 | 19428CEC696C12440C58723FEE8B7800 /* Pods-ISVImageScrollView_Tests.release.xcconfig */,
163 | );
164 | name = "Pods-ISVImageScrollView_Tests";
165 | path = "Target Support Files/Pods-ISVImageScrollView_Tests";
166 | sourceTree = "";
167 | };
168 | A6F97F216E29A372A0D9EEBB1B196080 /* Pod */ = {
169 | isa = PBXGroup;
170 | children = (
171 | 50362237B293A92359E6CB9ABB7569C1 /* ISVImageScrollView.podspec */,
172 | 6A797C0DFC05C9F337323DA466867E18 /* LICENSE */,
173 | FF8E31C7F41A37CC6B3A9C6AE623A684 /* README.md */,
174 | );
175 | name = Pod;
176 | sourceTree = "";
177 | };
178 | AC2F46AA2265F1C0AEFBC6AC1EA94A39 /* Products */ = {
179 | isa = PBXGroup;
180 | children = (
181 | 3D7344CBA9E53E976F602F2EE73B5A88 /* ISVImageScrollView.framework */,
182 | 98DAECC9D89700405E89A6496992082A /* Pods_ISVImageScrollView_Example.framework */,
183 | DE520341CD0B9BB9AA7DC28C84C18C94 /* Pods_ISVImageScrollView_Tests.framework */,
184 | );
185 | name = Products;
186 | sourceTree = "";
187 | };
188 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = {
189 | isa = PBXGroup;
190 | children = (
191 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */,
192 | );
193 | name = iOS;
194 | sourceTree = "";
195 | };
196 | CF1408CF629C7361332E53B88F7BD30C = {
197 | isa = PBXGroup;
198 | children = (
199 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
200 | 54F5C38C7ABAFD6532C8B7DA88B8B595 /* Development Pods */,
201 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */,
202 | AC2F46AA2265F1C0AEFBC6AC1EA94A39 /* Products */,
203 | 2BE4F2738EE1E3E8E414D503CDD1C62D /* Targets Support Files */,
204 | );
205 | sourceTree = "";
206 | };
207 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = {
208 | isa = PBXGroup;
209 | children = (
210 | C0834CEBB1379A84116EF29F93051C60 /* iOS */,
211 | );
212 | name = Frameworks;
213 | sourceTree = "";
214 | };
215 | EF49415AC1008ECFB8C480FBF6D287E2 /* ISVImageScrollView */ = {
216 | isa = PBXGroup;
217 | children = (
218 | EA34A1E4CB9B65D3799B6E5D83586CC9 /* ISVImageScrollView.swift */,
219 | A6F97F216E29A372A0D9EEBB1B196080 /* Pod */,
220 | 272BF1FD64B59D1B60DF0F5D4F0701EF /* Support Files */,
221 | );
222 | name = ISVImageScrollView;
223 | path = ../..;
224 | sourceTree = "";
225 | };
226 | /* End PBXGroup section */
227 |
228 | /* Begin PBXHeadersBuildPhase section */
229 | 026A15A350273C73E32280B20B03E251 /* Headers */ = {
230 | isa = PBXHeadersBuildPhase;
231 | buildActionMask = 2147483647;
232 | files = (
233 | 17299A175C109ACA71F3C5FFD9AF4E97 /* Pods-ISVImageScrollView_Tests-umbrella.h in Headers */,
234 | );
235 | runOnlyForDeploymentPostprocessing = 0;
236 | };
237 | 23D1E71B58C097339E009472E236EC35 /* Headers */ = {
238 | isa = PBXHeadersBuildPhase;
239 | buildActionMask = 2147483647;
240 | files = (
241 | 261CEE1A857C03650BC821BD01B73DF4 /* ISVImageScrollView-umbrella.h in Headers */,
242 | );
243 | runOnlyForDeploymentPostprocessing = 0;
244 | };
245 | F183249CD9685F0F1E75392C0B83EB20 /* Headers */ = {
246 | isa = PBXHeadersBuildPhase;
247 | buildActionMask = 2147483647;
248 | files = (
249 | FE053EBC3C02B256D91D5E2E071C31A1 /* Pods-ISVImageScrollView_Example-umbrella.h in Headers */,
250 | );
251 | runOnlyForDeploymentPostprocessing = 0;
252 | };
253 | /* End PBXHeadersBuildPhase section */
254 |
255 | /* Begin PBXNativeTarget section */
256 | 39DDEE16D67487C83D019D3B34AD9098 /* Pods-ISVImageScrollView_Example */ = {
257 | isa = PBXNativeTarget;
258 | buildConfigurationList = 25F649F18B97E371270637482F8293E1 /* Build configuration list for PBXNativeTarget "Pods-ISVImageScrollView_Example" */;
259 | buildPhases = (
260 | F183249CD9685F0F1E75392C0B83EB20 /* Headers */,
261 | 03799F0F1FEF5A2325FF6D0CCAA41505 /* Sources */,
262 | 3263D865483B8FEB05BE89728282283E /* Frameworks */,
263 | 13336E76BA23021F4CD967E57443033B /* Resources */,
264 | );
265 | buildRules = (
266 | );
267 | dependencies = (
268 | 9AF55881BADC5B6A81D0396E70194F50 /* PBXTargetDependency */,
269 | );
270 | name = "Pods-ISVImageScrollView_Example";
271 | productName = "Pods-ISVImageScrollView_Example";
272 | productReference = 98DAECC9D89700405E89A6496992082A /* Pods_ISVImageScrollView_Example.framework */;
273 | productType = "com.apple.product-type.framework";
274 | };
275 | C3E807F84A827D095DBF2DDD522830E6 /* Pods-ISVImageScrollView_Tests */ = {
276 | isa = PBXNativeTarget;
277 | buildConfigurationList = 74758B2D561A9C81F82E997DB0AF7E85 /* Build configuration list for PBXNativeTarget "Pods-ISVImageScrollView_Tests" */;
278 | buildPhases = (
279 | 026A15A350273C73E32280B20B03E251 /* Headers */,
280 | 3565993A90028DE8352E0EFE830AE2D7 /* Sources */,
281 | BF887476A433D7389896DC3B543AA815 /* Frameworks */,
282 | 015D43EF42532475297F4BC0F0DE506E /* Resources */,
283 | );
284 | buildRules = (
285 | );
286 | dependencies = (
287 | 809A7EDE86B4B7DA83785E6B30D897AE /* PBXTargetDependency */,
288 | );
289 | name = "Pods-ISVImageScrollView_Tests";
290 | productName = "Pods-ISVImageScrollView_Tests";
291 | productReference = DE520341CD0B9BB9AA7DC28C84C18C94 /* Pods_ISVImageScrollView_Tests.framework */;
292 | productType = "com.apple.product-type.framework";
293 | };
294 | F5DD8A1A2674CEC9EE0ECEDD288E1A4E /* ISVImageScrollView */ = {
295 | isa = PBXNativeTarget;
296 | buildConfigurationList = 510F9CC7A5760BA58822BC6CA239C098 /* Build configuration list for PBXNativeTarget "ISVImageScrollView" */;
297 | buildPhases = (
298 | 23D1E71B58C097339E009472E236EC35 /* Headers */,
299 | 4FD7393C45439B9C56169E73BC52E0F6 /* Sources */,
300 | D950829C2D01997BDA2D964B71720410 /* Frameworks */,
301 | C271654FB75E05234710EDD8EF0D86FC /* Resources */,
302 | );
303 | buildRules = (
304 | );
305 | dependencies = (
306 | );
307 | name = ISVImageScrollView;
308 | productName = ISVImageScrollView;
309 | productReference = 3D7344CBA9E53E976F602F2EE73B5A88 /* ISVImageScrollView.framework */;
310 | productType = "com.apple.product-type.framework";
311 | };
312 | /* End PBXNativeTarget section */
313 |
314 | /* Begin PBXProject section */
315 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
316 | isa = PBXProject;
317 | attributes = {
318 | LastSwiftUpdateCheck = 1100;
319 | LastUpgradeCheck = 1100;
320 | };
321 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
322 | compatibilityVersion = "Xcode 3.2";
323 | developmentRegion = en;
324 | hasScannedForEncodings = 0;
325 | knownRegions = (
326 | en,
327 | Base,
328 | );
329 | mainGroup = CF1408CF629C7361332E53B88F7BD30C;
330 | productRefGroup = AC2F46AA2265F1C0AEFBC6AC1EA94A39 /* Products */;
331 | projectDirPath = "";
332 | projectRoot = "";
333 | targets = (
334 | F5DD8A1A2674CEC9EE0ECEDD288E1A4E /* ISVImageScrollView */,
335 | 39DDEE16D67487C83D019D3B34AD9098 /* Pods-ISVImageScrollView_Example */,
336 | C3E807F84A827D095DBF2DDD522830E6 /* Pods-ISVImageScrollView_Tests */,
337 | );
338 | };
339 | /* End PBXProject section */
340 |
341 | /* Begin PBXResourcesBuildPhase section */
342 | 015D43EF42532475297F4BC0F0DE506E /* Resources */ = {
343 | isa = PBXResourcesBuildPhase;
344 | buildActionMask = 2147483647;
345 | files = (
346 | );
347 | runOnlyForDeploymentPostprocessing = 0;
348 | };
349 | 13336E76BA23021F4CD967E57443033B /* Resources */ = {
350 | isa = PBXResourcesBuildPhase;
351 | buildActionMask = 2147483647;
352 | files = (
353 | );
354 | runOnlyForDeploymentPostprocessing = 0;
355 | };
356 | C271654FB75E05234710EDD8EF0D86FC /* Resources */ = {
357 | isa = PBXResourcesBuildPhase;
358 | buildActionMask = 2147483647;
359 | files = (
360 | );
361 | runOnlyForDeploymentPostprocessing = 0;
362 | };
363 | /* End PBXResourcesBuildPhase section */
364 |
365 | /* Begin PBXSourcesBuildPhase section */
366 | 03799F0F1FEF5A2325FF6D0CCAA41505 /* Sources */ = {
367 | isa = PBXSourcesBuildPhase;
368 | buildActionMask = 2147483647;
369 | files = (
370 | C61786C5449BF48F577151C66BC6482D /* Pods-ISVImageScrollView_Example-dummy.m in Sources */,
371 | );
372 | runOnlyForDeploymentPostprocessing = 0;
373 | };
374 | 3565993A90028DE8352E0EFE830AE2D7 /* Sources */ = {
375 | isa = PBXSourcesBuildPhase;
376 | buildActionMask = 2147483647;
377 | files = (
378 | 8D0E0D9B641A41442CB859928697D45B /* Pods-ISVImageScrollView_Tests-dummy.m in Sources */,
379 | );
380 | runOnlyForDeploymentPostprocessing = 0;
381 | };
382 | 4FD7393C45439B9C56169E73BC52E0F6 /* Sources */ = {
383 | isa = PBXSourcesBuildPhase;
384 | buildActionMask = 2147483647;
385 | files = (
386 | 79A8F87A63A68EB8F6775CF9EB578C8B /* ISVImageScrollView-dummy.m in Sources */,
387 | 8FE58BEA3CA722826917AA229B4FECC8 /* ISVImageScrollView.swift in Sources */,
388 | );
389 | runOnlyForDeploymentPostprocessing = 0;
390 | };
391 | /* End PBXSourcesBuildPhase section */
392 |
393 | /* Begin PBXTargetDependency section */
394 | 809A7EDE86B4B7DA83785E6B30D897AE /* PBXTargetDependency */ = {
395 | isa = PBXTargetDependency;
396 | name = "Pods-ISVImageScrollView_Example";
397 | target = 39DDEE16D67487C83D019D3B34AD9098 /* Pods-ISVImageScrollView_Example */;
398 | targetProxy = 43B6A742C55F4A3CDCE6E198F5BC14BA /* PBXContainerItemProxy */;
399 | };
400 | 9AF55881BADC5B6A81D0396E70194F50 /* PBXTargetDependency */ = {
401 | isa = PBXTargetDependency;
402 | name = ISVImageScrollView;
403 | target = F5DD8A1A2674CEC9EE0ECEDD288E1A4E /* ISVImageScrollView */;
404 | targetProxy = 81BBA05AA879C7668A2448E9CBE7EBB3 /* PBXContainerItemProxy */;
405 | };
406 | /* End PBXTargetDependency section */
407 |
408 | /* Begin XCBuildConfiguration section */
409 | 25E861D53DBECD34437283513588F5D7 /* Release */ = {
410 | isa = XCBuildConfiguration;
411 | baseConfigurationReference = 20C8A2C2366F21FD436FEC41E9EE5CAE /* Pods-ISVImageScrollView_Example.release.xcconfig */;
412 | buildSettings = {
413 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
414 | CODE_SIGN_IDENTITY = "";
415 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
416 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
417 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
418 | CURRENT_PROJECT_VERSION = 1;
419 | DEFINES_MODULE = YES;
420 | DYLIB_COMPATIBILITY_VERSION = 1;
421 | DYLIB_CURRENT_VERSION = 1;
422 | DYLIB_INSTALL_NAME_BASE = "@rpath";
423 | INFOPLIST_FILE = "Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example-Info.plist";
424 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
425 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
426 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
427 | MACH_O_TYPE = staticlib;
428 | MODULEMAP_FILE = "Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example.modulemap";
429 | OTHER_LDFLAGS = "";
430 | OTHER_LIBTOOLFLAGS = "";
431 | PODS_ROOT = "$(SRCROOT)";
432 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
433 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
434 | SDKROOT = iphoneos;
435 | SKIP_INSTALL = YES;
436 | TARGETED_DEVICE_FAMILY = "1,2";
437 | VALIDATE_PRODUCT = YES;
438 | VERSIONING_SYSTEM = "apple-generic";
439 | VERSION_INFO_PREFIX = "";
440 | };
441 | name = Release;
442 | };
443 | 43689E2D1507CE705983850336053930 /* Debug */ = {
444 | isa = XCBuildConfiguration;
445 | baseConfigurationReference = 632993ED324D92F8B9E490E6BE1F460A /* ISVImageScrollView.debug.xcconfig */;
446 | buildSettings = {
447 | CODE_SIGN_IDENTITY = "";
448 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
449 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
450 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
451 | CURRENT_PROJECT_VERSION = 1;
452 | DEFINES_MODULE = YES;
453 | DYLIB_COMPATIBILITY_VERSION = 1;
454 | DYLIB_CURRENT_VERSION = 1;
455 | DYLIB_INSTALL_NAME_BASE = "@rpath";
456 | GCC_PREFIX_HEADER = "Target Support Files/ISVImageScrollView/ISVImageScrollView-prefix.pch";
457 | INFOPLIST_FILE = "Target Support Files/ISVImageScrollView/ISVImageScrollView-Info.plist";
458 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
459 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
460 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
461 | MODULEMAP_FILE = "Target Support Files/ISVImageScrollView/ISVImageScrollView.modulemap";
462 | PRODUCT_MODULE_NAME = ISVImageScrollView;
463 | PRODUCT_NAME = ISVImageScrollView;
464 | SDKROOT = iphoneos;
465 | SKIP_INSTALL = YES;
466 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
467 | SWIFT_VERSION = 5.0;
468 | TARGETED_DEVICE_FAMILY = "1,2";
469 | VERSIONING_SYSTEM = "apple-generic";
470 | VERSION_INFO_PREFIX = "";
471 | };
472 | name = Debug;
473 | };
474 | 4ADE8770E440766E1F7A55987C79B7CF /* Release */ = {
475 | isa = XCBuildConfiguration;
476 | baseConfigurationReference = 11E47E193A3D94DEA136F47742A594AE /* ISVImageScrollView.release.xcconfig */;
477 | buildSettings = {
478 | CODE_SIGN_IDENTITY = "";
479 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
480 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
481 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
482 | CURRENT_PROJECT_VERSION = 1;
483 | DEFINES_MODULE = YES;
484 | DYLIB_COMPATIBILITY_VERSION = 1;
485 | DYLIB_CURRENT_VERSION = 1;
486 | DYLIB_INSTALL_NAME_BASE = "@rpath";
487 | GCC_PREFIX_HEADER = "Target Support Files/ISVImageScrollView/ISVImageScrollView-prefix.pch";
488 | INFOPLIST_FILE = "Target Support Files/ISVImageScrollView/ISVImageScrollView-Info.plist";
489 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
490 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
491 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
492 | MODULEMAP_FILE = "Target Support Files/ISVImageScrollView/ISVImageScrollView.modulemap";
493 | PRODUCT_MODULE_NAME = ISVImageScrollView;
494 | PRODUCT_NAME = ISVImageScrollView;
495 | SDKROOT = iphoneos;
496 | SKIP_INSTALL = YES;
497 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
498 | SWIFT_VERSION = 5.0;
499 | TARGETED_DEVICE_FAMILY = "1,2";
500 | VALIDATE_PRODUCT = YES;
501 | VERSIONING_SYSTEM = "apple-generic";
502 | VERSION_INFO_PREFIX = "";
503 | };
504 | name = Release;
505 | };
506 | 4D9F9A7F99426EE275A39C638FB74C30 /* Debug */ = {
507 | isa = XCBuildConfiguration;
508 | baseConfigurationReference = 2EDE247D91BDED635555ECBE85A078B9 /* Pods-ISVImageScrollView_Tests.debug.xcconfig */;
509 | buildSettings = {
510 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
511 | CODE_SIGN_IDENTITY = "";
512 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
513 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
514 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
515 | CURRENT_PROJECT_VERSION = 1;
516 | DEFINES_MODULE = YES;
517 | DYLIB_COMPATIBILITY_VERSION = 1;
518 | DYLIB_CURRENT_VERSION = 1;
519 | DYLIB_INSTALL_NAME_BASE = "@rpath";
520 | INFOPLIST_FILE = "Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests-Info.plist";
521 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
522 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
523 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
524 | MACH_O_TYPE = staticlib;
525 | MODULEMAP_FILE = "Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests.modulemap";
526 | OTHER_LDFLAGS = "";
527 | OTHER_LIBTOOLFLAGS = "";
528 | PODS_ROOT = "$(SRCROOT)";
529 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
530 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
531 | SDKROOT = iphoneos;
532 | SKIP_INSTALL = YES;
533 | TARGETED_DEVICE_FAMILY = "1,2";
534 | VERSIONING_SYSTEM = "apple-generic";
535 | VERSION_INFO_PREFIX = "";
536 | };
537 | name = Debug;
538 | };
539 | 6899634550136D3349FC22524C6AF241 /* Release */ = {
540 | isa = XCBuildConfiguration;
541 | baseConfigurationReference = 19428CEC696C12440C58723FEE8B7800 /* Pods-ISVImageScrollView_Tests.release.xcconfig */;
542 | buildSettings = {
543 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
544 | CODE_SIGN_IDENTITY = "";
545 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
546 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
547 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
548 | CURRENT_PROJECT_VERSION = 1;
549 | DEFINES_MODULE = YES;
550 | DYLIB_COMPATIBILITY_VERSION = 1;
551 | DYLIB_CURRENT_VERSION = 1;
552 | DYLIB_INSTALL_NAME_BASE = "@rpath";
553 | INFOPLIST_FILE = "Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests-Info.plist";
554 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
555 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
556 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
557 | MACH_O_TYPE = staticlib;
558 | MODULEMAP_FILE = "Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests.modulemap";
559 | OTHER_LDFLAGS = "";
560 | OTHER_LIBTOOLFLAGS = "";
561 | PODS_ROOT = "$(SRCROOT)";
562 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
563 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
564 | SDKROOT = iphoneos;
565 | SKIP_INSTALL = YES;
566 | TARGETED_DEVICE_FAMILY = "1,2";
567 | VALIDATE_PRODUCT = YES;
568 | VERSIONING_SYSTEM = "apple-generic";
569 | VERSION_INFO_PREFIX = "";
570 | };
571 | name = Release;
572 | };
573 | AAB9AC03F4B4ACD0CECA53C24B8A56C9 /* Debug */ = {
574 | isa = XCBuildConfiguration;
575 | baseConfigurationReference = 6E0FDE243F2B4ACDC8403D894C264C6F /* Pods-ISVImageScrollView_Example.debug.xcconfig */;
576 | buildSettings = {
577 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
578 | CODE_SIGN_IDENTITY = "";
579 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
580 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
581 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
582 | CURRENT_PROJECT_VERSION = 1;
583 | DEFINES_MODULE = YES;
584 | DYLIB_COMPATIBILITY_VERSION = 1;
585 | DYLIB_CURRENT_VERSION = 1;
586 | DYLIB_INSTALL_NAME_BASE = "@rpath";
587 | INFOPLIST_FILE = "Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example-Info.plist";
588 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
589 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
590 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
591 | MACH_O_TYPE = staticlib;
592 | MODULEMAP_FILE = "Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example.modulemap";
593 | OTHER_LDFLAGS = "";
594 | OTHER_LIBTOOLFLAGS = "";
595 | PODS_ROOT = "$(SRCROOT)";
596 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
597 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
598 | SDKROOT = iphoneos;
599 | SKIP_INSTALL = YES;
600 | TARGETED_DEVICE_FAMILY = "1,2";
601 | VERSIONING_SYSTEM = "apple-generic";
602 | VERSION_INFO_PREFIX = "";
603 | };
604 | name = Debug;
605 | };
606 | B0087CB4594321EF41619F3181FE120E /* Release */ = {
607 | isa = XCBuildConfiguration;
608 | buildSettings = {
609 | ALWAYS_SEARCH_USER_PATHS = NO;
610 | CLANG_ANALYZER_NONNULL = YES;
611 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
612 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
613 | CLANG_CXX_LIBRARY = "libc++";
614 | CLANG_ENABLE_MODULES = YES;
615 | CLANG_ENABLE_OBJC_ARC = YES;
616 | CLANG_ENABLE_OBJC_WEAK = YES;
617 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
618 | CLANG_WARN_BOOL_CONVERSION = YES;
619 | CLANG_WARN_COMMA = YES;
620 | CLANG_WARN_CONSTANT_CONVERSION = YES;
621 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
622 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
623 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
624 | CLANG_WARN_EMPTY_BODY = YES;
625 | CLANG_WARN_ENUM_CONVERSION = YES;
626 | CLANG_WARN_INFINITE_RECURSION = YES;
627 | CLANG_WARN_INT_CONVERSION = YES;
628 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
629 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
630 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
631 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
632 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
633 | CLANG_WARN_STRICT_PROTOTYPES = YES;
634 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
635 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
636 | CLANG_WARN_UNREACHABLE_CODE = YES;
637 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
638 | COPY_PHASE_STRIP = NO;
639 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
640 | ENABLE_NS_ASSERTIONS = NO;
641 | ENABLE_STRICT_OBJC_MSGSEND = YES;
642 | GCC_C_LANGUAGE_STANDARD = gnu11;
643 | GCC_NO_COMMON_BLOCKS = YES;
644 | GCC_PREPROCESSOR_DEFINITIONS = (
645 | "POD_CONFIGURATION_RELEASE=1",
646 | "$(inherited)",
647 | );
648 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
649 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
650 | GCC_WARN_UNDECLARED_SELECTOR = YES;
651 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
652 | GCC_WARN_UNUSED_FUNCTION = YES;
653 | GCC_WARN_UNUSED_VARIABLE = YES;
654 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
655 | MTL_ENABLE_DEBUG_INFO = NO;
656 | MTL_FAST_MATH = YES;
657 | PRODUCT_NAME = "$(TARGET_NAME)";
658 | STRIP_INSTALLED_PRODUCT = NO;
659 | SWIFT_COMPILATION_MODE = wholemodule;
660 | SWIFT_OPTIMIZATION_LEVEL = "-O";
661 | SWIFT_VERSION = 5.0;
662 | SYMROOT = "${SRCROOT}/../build";
663 | };
664 | name = Release;
665 | };
666 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */ = {
667 | isa = XCBuildConfiguration;
668 | buildSettings = {
669 | ALWAYS_SEARCH_USER_PATHS = NO;
670 | CLANG_ANALYZER_NONNULL = YES;
671 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
672 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
673 | CLANG_CXX_LIBRARY = "libc++";
674 | CLANG_ENABLE_MODULES = YES;
675 | CLANG_ENABLE_OBJC_ARC = YES;
676 | CLANG_ENABLE_OBJC_WEAK = YES;
677 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
678 | CLANG_WARN_BOOL_CONVERSION = YES;
679 | CLANG_WARN_COMMA = YES;
680 | CLANG_WARN_CONSTANT_CONVERSION = YES;
681 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
682 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
683 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
684 | CLANG_WARN_EMPTY_BODY = YES;
685 | CLANG_WARN_ENUM_CONVERSION = YES;
686 | CLANG_WARN_INFINITE_RECURSION = YES;
687 | CLANG_WARN_INT_CONVERSION = YES;
688 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
689 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
690 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
691 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
692 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
693 | CLANG_WARN_STRICT_PROTOTYPES = YES;
694 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
695 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
696 | CLANG_WARN_UNREACHABLE_CODE = YES;
697 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
698 | COPY_PHASE_STRIP = NO;
699 | DEBUG_INFORMATION_FORMAT = dwarf;
700 | ENABLE_STRICT_OBJC_MSGSEND = YES;
701 | ENABLE_TESTABILITY = YES;
702 | GCC_C_LANGUAGE_STANDARD = gnu11;
703 | GCC_DYNAMIC_NO_PIC = NO;
704 | GCC_NO_COMMON_BLOCKS = YES;
705 | GCC_OPTIMIZATION_LEVEL = 0;
706 | GCC_PREPROCESSOR_DEFINITIONS = (
707 | "POD_CONFIGURATION_DEBUG=1",
708 | "DEBUG=1",
709 | "$(inherited)",
710 | );
711 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
712 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
713 | GCC_WARN_UNDECLARED_SELECTOR = YES;
714 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
715 | GCC_WARN_UNUSED_FUNCTION = YES;
716 | GCC_WARN_UNUSED_VARIABLE = YES;
717 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
718 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
719 | MTL_FAST_MATH = YES;
720 | ONLY_ACTIVE_ARCH = YES;
721 | PRODUCT_NAME = "$(TARGET_NAME)";
722 | STRIP_INSTALLED_PRODUCT = NO;
723 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
724 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
725 | SWIFT_VERSION = 5.0;
726 | SYMROOT = "${SRCROOT}/../build";
727 | };
728 | name = Debug;
729 | };
730 | /* End XCBuildConfiguration section */
731 |
732 | /* Begin XCConfigurationList section */
733 | 25F649F18B97E371270637482F8293E1 /* Build configuration list for PBXNativeTarget "Pods-ISVImageScrollView_Example" */ = {
734 | isa = XCConfigurationList;
735 | buildConfigurations = (
736 | AAB9AC03F4B4ACD0CECA53C24B8A56C9 /* Debug */,
737 | 25E861D53DBECD34437283513588F5D7 /* Release */,
738 | );
739 | defaultConfigurationIsVisible = 0;
740 | defaultConfigurationName = Release;
741 | };
742 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
743 | isa = XCConfigurationList;
744 | buildConfigurations = (
745 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */,
746 | B0087CB4594321EF41619F3181FE120E /* Release */,
747 | );
748 | defaultConfigurationIsVisible = 0;
749 | defaultConfigurationName = Release;
750 | };
751 | 510F9CC7A5760BA58822BC6CA239C098 /* Build configuration list for PBXNativeTarget "ISVImageScrollView" */ = {
752 | isa = XCConfigurationList;
753 | buildConfigurations = (
754 | 43689E2D1507CE705983850336053930 /* Debug */,
755 | 4ADE8770E440766E1F7A55987C79B7CF /* Release */,
756 | );
757 | defaultConfigurationIsVisible = 0;
758 | defaultConfigurationName = Release;
759 | };
760 | 74758B2D561A9C81F82E997DB0AF7E85 /* Build configuration list for PBXNativeTarget "Pods-ISVImageScrollView_Tests" */ = {
761 | isa = XCConfigurationList;
762 | buildConfigurations = (
763 | 4D9F9A7F99426EE275A39C638FB74C30 /* Debug */,
764 | 6899634550136D3349FC22524C6AF241 /* Release */,
765 | );
766 | defaultConfigurationIsVisible = 0;
767 | defaultConfigurationName = Release;
768 | };
769 | /* End XCConfigurationList section */
770 | };
771 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
772 | }
773 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/ISVImageScrollView/ISVImageScrollView-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.3.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | ${CURRENT_PROJECT_VERSION}
23 | NSPrincipalClass
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/ISVImageScrollView/ISVImageScrollView-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_ISVImageScrollView : NSObject
3 | @end
4 | @implementation PodsDummy_ISVImageScrollView
5 | @end
6 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/ISVImageScrollView/ISVImageScrollView-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/ISVImageScrollView/ISVImageScrollView-umbrella.h:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
14 | FOUNDATION_EXPORT double ISVImageScrollViewVersionNumber;
15 | FOUNDATION_EXPORT const unsigned char ISVImageScrollViewVersionString[];
16 |
17 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/ISVImageScrollView/ISVImageScrollView.debug.xcconfig:
--------------------------------------------------------------------------------
1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ISVImageScrollView
2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS
4 | PODS_BUILD_DIR = ${BUILD_DIR}
5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
6 | PODS_ROOT = ${SRCROOT}
7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../..
8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
9 | SKIP_INSTALL = YES
10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
11 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/ISVImageScrollView/ISVImageScrollView.modulemap:
--------------------------------------------------------------------------------
1 | framework module ISVImageScrollView {
2 | umbrella header "ISVImageScrollView-umbrella.h"
3 |
4 | export *
5 | module * { export * }
6 | }
7 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/ISVImageScrollView/ISVImageScrollView.release.xcconfig:
--------------------------------------------------------------------------------
1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ISVImageScrollView
2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS
4 | PODS_BUILD_DIR = ${BUILD_DIR}
5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
6 | PODS_ROOT = ${SRCROOT}
7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../..
8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
9 | SKIP_INSTALL = YES
10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
11 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_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-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example-acknowledgements.markdown:
--------------------------------------------------------------------------------
1 | # Acknowledgements
2 | This application makes use of the following third party libraries:
3 |
4 | ## ISVImageScrollView
5 |
6 | Copyright (c) 2017 kupratsevich@gmail.com
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-ISVImageScrollView_Example/Pods-ISVImageScrollView_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) 2017 kupratsevich@gmail.com <yurii.kupratsevych@elementum.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 | License
38 | MIT
39 | Title
40 | ISVImageScrollView
41 | Type
42 | PSGroupSpecifier
43 |
44 |
45 | FooterText
46 | Generated by CocoaPods - https://cocoapods.org
47 | Title
48 |
49 | Type
50 | PSGroupSpecifier
51 |
52 |
53 | StringsTable
54 | Acknowledgements
55 | Title
56 | Acknowledgements
57 |
58 |
59 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_Pods_ISVImageScrollView_Example : NSObject
3 | @end
4 | @implementation PodsDummy_Pods_ISVImageScrollView_Example
5 | @end
6 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example-frameworks.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | set -e
3 | set -u
4 | set -o pipefail
5 |
6 | function on_error {
7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure"
8 | }
9 | trap 'on_error $LINENO' ERR
10 |
11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then
12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy
13 | # frameworks to, so exit 0 (signalling the script phase was successful).
14 | exit 0
15 | fi
16 |
17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
19 |
20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}"
21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"
22 |
23 | # Used as a return value for each invocation of `strip_invalid_archs` function.
24 | STRIP_BINARY_RETVAL=0
25 |
26 | # This protects against multiple targets copying the same framework dependency at the same time. The solution
27 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html
28 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????")
29 |
30 | # Copies and strips a vendored framework
31 | install_framework()
32 | {
33 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
34 | local source="${BUILT_PRODUCTS_DIR}/$1"
35 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
36 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
37 | elif [ -r "$1" ]; then
38 | local source="$1"
39 | fi
40 |
41 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
42 |
43 | if [ -L "${source}" ]; then
44 | echo "Symlinked..."
45 | source="$(readlink "${source}")"
46 | fi
47 |
48 | # Use filter instead of exclude so missing patterns don't throw errors.
49 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"
51 |
52 | local basename
53 | basename="$(basename -s .framework "$1")"
54 | binary="${destination}/${basename}.framework/${basename}"
55 |
56 | if ! [ -r "$binary" ]; then
57 | binary="${destination}/${basename}"
58 | elif [ -L "${binary}" ]; then
59 | echo "Destination binary is symlinked..."
60 | dirname="$(dirname "${binary}")"
61 | binary="${dirname}/$(readlink "${binary}")"
62 | fi
63 |
64 | # Strip invalid architectures so "fat" simulator / device frameworks work on device
65 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
66 | strip_invalid_archs "$binary"
67 | fi
68 |
69 | # Resign the code if required by the build settings to avoid unstable apps
70 | code_sign_if_enabled "${destination}/$(basename "$1")"
71 |
72 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
73 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
74 | local swift_runtime_libs
75 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u)
76 | for lib in $swift_runtime_libs; do
77 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
78 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
79 | code_sign_if_enabled "${destination}/${lib}"
80 | done
81 | fi
82 | }
83 |
84 | # Copies and strips a vendored dSYM
85 | install_dsym() {
86 | local source="$1"
87 | warn_missing_arch=${2:-true}
88 | if [ -r "$source" ]; then
89 | # Copy the dSYM into the targets temp dir.
90 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\""
91 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}"
92 |
93 | local basename
94 | basename="$(basename -s .dSYM "$source")"
95 | binary_name="$(ls "$source/Contents/Resources/DWARF")"
96 | binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}"
97 |
98 | # Strip invalid architectures so "fat" simulator / device frameworks work on device
99 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then
100 | strip_invalid_archs "$binary" "$warn_missing_arch"
101 | fi
102 |
103 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then
104 | # Move the stripped file into its final destination.
105 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\""
106 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}"
107 | else
108 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing.
109 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM"
110 | fi
111 | fi
112 | }
113 |
114 | # Copies the bcsymbolmap files of a vendored framework
115 | install_bcsymbolmap() {
116 | local bcsymbolmap_path="$1"
117 | local destination="${BUILT_PRODUCTS_DIR}"
118 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}""
119 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"
120 | }
121 |
122 | # Signs a framework with the provided identity
123 | code_sign_if_enabled() {
124 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
125 | # Use the current code_sign_identity
126 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
127 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'"
128 |
129 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
130 | code_sign_cmd="$code_sign_cmd &"
131 | fi
132 | echo "$code_sign_cmd"
133 | eval "$code_sign_cmd"
134 | fi
135 | }
136 |
137 | # Strip invalid architectures
138 | strip_invalid_archs() {
139 | binary="$1"
140 | warn_missing_arch=${2:-true}
141 | # Get architectures for current target binary
142 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)"
143 | # Intersect them with the architectures we are building for
144 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)"
145 | # If there are no archs supported by this binary then warn the user
146 | if [[ -z "$intersected_archs" ]]; then
147 | if [[ "$warn_missing_arch" == "true" ]]; then
148 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)."
149 | fi
150 | STRIP_BINARY_RETVAL=0
151 | return
152 | fi
153 | stripped=""
154 | for arch in $binary_archs; do
155 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then
156 | # Strip non-valid architectures in-place
157 | lipo -remove "$arch" -output "$binary" "$binary"
158 | stripped="$stripped $arch"
159 | fi
160 | done
161 | if [[ "$stripped" ]]; then
162 | echo "Stripped $binary of architectures:$stripped"
163 | fi
164 | STRIP_BINARY_RETVAL=1
165 | }
166 |
167 | install_artifact() {
168 | artifact="$1"
169 | base="$(basename "$artifact")"
170 | case $base in
171 | *.framework)
172 | install_framework "$artifact"
173 | ;;
174 | *.dSYM)
175 | # Suppress arch warnings since XCFrameworks will include many dSYM files
176 | install_dsym "$artifact" "false"
177 | ;;
178 | *.bcsymbolmap)
179 | install_bcsymbolmap "$artifact"
180 | ;;
181 | *)
182 | echo "error: Unrecognized artifact "$artifact""
183 | ;;
184 | esac
185 | }
186 |
187 | copy_artifacts() {
188 | file_list="$1"
189 | while read artifact; do
190 | install_artifact "$artifact"
191 | done <$file_list
192 | }
193 |
194 | ARTIFACT_LIST_FILE="${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt"
195 | if [ -r "${ARTIFACT_LIST_FILE}" ]; then
196 | copy_artifacts "${ARTIFACT_LIST_FILE}"
197 | fi
198 |
199 | if [[ "$CONFIGURATION" == "Debug" ]]; then
200 | install_framework "${BUILT_PRODUCTS_DIR}/ISVImageScrollView/ISVImageScrollView.framework"
201 | fi
202 | if [[ "$CONFIGURATION" == "Release" ]]; then
203 | install_framework "${BUILT_PRODUCTS_DIR}/ISVImageScrollView/ISVImageScrollView.framework"
204 | fi
205 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
206 | wait
207 | fi
208 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example-umbrella.h:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
14 | FOUNDATION_EXPORT double Pods_ISVImageScrollView_ExampleVersionNumber;
15 | FOUNDATION_EXPORT const unsigned char Pods_ISVImageScrollView_ExampleVersionString[];
16 |
17 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example.debug.xcconfig:
--------------------------------------------------------------------------------
1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ISVImageScrollView"
3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ISVImageScrollView/ISVImageScrollView.framework/Headers"
5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
6 | OTHER_LDFLAGS = $(inherited) -framework "ISVImageScrollView"
7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS
8 | PODS_BUILD_DIR = ${BUILD_DIR}
9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
11 | PODS_ROOT = ${SRCROOT}/Pods
12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
13 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example.modulemap:
--------------------------------------------------------------------------------
1 | framework module Pods_ISVImageScrollView_Example {
2 | umbrella header "Pods-ISVImageScrollView_Example-umbrella.h"
3 |
4 | export *
5 | module * { export * }
6 | }
7 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Example/Pods-ISVImageScrollView_Example.release.xcconfig:
--------------------------------------------------------------------------------
1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ISVImageScrollView"
3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ISVImageScrollView/ISVImageScrollView.framework/Headers"
5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
6 | OTHER_LDFLAGS = $(inherited) -framework "ISVImageScrollView"
7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS
8 | PODS_BUILD_DIR = ${BUILD_DIR}
9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
11 | PODS_ROOT = ${SRCROOT}/Pods
12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
13 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_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-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests-acknowledgements.markdown:
--------------------------------------------------------------------------------
1 | # Acknowledgements
2 | This application makes use of the following third party libraries:
3 | Generated by CocoaPods - https://cocoapods.org
4 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_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 | Generated by CocoaPods - https://cocoapods.org
18 | Title
19 |
20 | Type
21 | PSGroupSpecifier
22 |
23 |
24 | StringsTable
25 | Acknowledgements
26 | Title
27 | Acknowledgements
28 |
29 |
30 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_Pods_ISVImageScrollView_Tests : NSObject
3 | @end
4 | @implementation PodsDummy_Pods_ISVImageScrollView_Tests
5 | @end
6 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests-umbrella.h:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
14 | FOUNDATION_EXPORT double Pods_ISVImageScrollView_TestsVersionNumber;
15 | FOUNDATION_EXPORT const unsigned char Pods_ISVImageScrollView_TestsVersionString[];
16 |
17 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests.debug.xcconfig:
--------------------------------------------------------------------------------
1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ISVImageScrollView"
2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ISVImageScrollView/ISVImageScrollView.framework/Headers"
4 | OTHER_LDFLAGS = $(inherited) -framework "ISVImageScrollView"
5 | PODS_BUILD_DIR = ${BUILD_DIR}
6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
8 | PODS_ROOT = ${SRCROOT}/Pods
9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
10 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests.modulemap:
--------------------------------------------------------------------------------
1 | framework module Pods_ISVImageScrollView_Tests {
2 | umbrella header "Pods-ISVImageScrollView_Tests-umbrella.h"
3 |
4 | export *
5 | module * { export * }
6 | }
7 |
--------------------------------------------------------------------------------
/Example/Pods/Target Support Files/Pods-ISVImageScrollView_Tests/Pods-ISVImageScrollView_Tests.release.xcconfig:
--------------------------------------------------------------------------------
1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ISVImageScrollView"
2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ISVImageScrollView/ISVImageScrollView.framework/Headers"
4 | OTHER_LDFLAGS = $(inherited) -framework "ISVImageScrollView"
5 | PODS_BUILD_DIR = ${BUILD_DIR}
6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
8 | PODS_ROOT = ${SRCROOT}/Pods
9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
10 |
--------------------------------------------------------------------------------
/Example/Tests/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 | CFBundlePackageType
14 | BNDL
15 | CFBundleShortVersionString
16 | 1.0
17 | CFBundleSignature
18 | ????
19 | CFBundleVersion
20 | 1
21 |
22 |
23 |
--------------------------------------------------------------------------------
/Example/Tests/Tests-Prefix.pch:
--------------------------------------------------------------------------------
1 | // The contents of this file are implicitly included at the beginning of every test case source file.
2 |
3 | #ifdef __OBJC__
4 |
5 |
6 |
7 | #endif
8 |
--------------------------------------------------------------------------------
/Example/Tests/Tests.m:
--------------------------------------------------------------------------------
1 | //
2 | // ISVImageScrollViewTests.m
3 | // ISVImageScrollViewTests
4 | //
5 | // Created by kupratsevich@gmail.com on 10/23/2017.
6 | // Copyright (c) 2017 kupratsevich@gmail.com. All rights reserved.
7 | //
8 |
9 | @import XCTest;
10 |
11 | @interface Tests : XCTestCase
12 |
13 | @end
14 |
15 | @implementation Tests
16 |
17 | - (void)setUp
18 | {
19 | [super setUp];
20 | // Put setup code here. This method is called before the invocation of each test method in the class.
21 | }
22 |
23 | - (void)tearDown
24 | {
25 | // Put teardown code here. This method is called after the invocation of each test method in the class.
26 | [super tearDown];
27 | }
28 |
29 | - (void)testExample
30 | {
31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
32 | }
33 |
34 | @end
35 |
36 |
--------------------------------------------------------------------------------
/Example/Tests/en.lproj/InfoPlist.strings:
--------------------------------------------------------------------------------
1 | /* Localized versions of Info.plist keys */
2 |
3 |
--------------------------------------------------------------------------------
/ISVImageScrollView.podspec:
--------------------------------------------------------------------------------
1 | #
2 | # Be sure to run `pod lib lint ISVImageScrollView.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 = 'ISVImageScrollView'
11 | s.version = '0.3.0'
12 | s.summary = 'A subclass of the UIScrollView tweaked for image preview with zooming, scrolling and rotation support.'
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 | When you need to incorporate an image preview into your application, usually you start with the UIScrollView and then spend hours tweaking it to get functionality similar to the default Photos app.
22 | This control provides you out-of-the-box functionality to zoom, scroll and rotate an UIImageView attached to it.
23 | DESC
24 |
25 | s.homepage = 'https://github.com/yuriiik/ISVImageScrollView'
26 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
27 | s.license = { :type => 'MIT', :file => 'LICENSE' }
28 | s.author = { 'Yurii Kupratsevych' => 'kupratsevich@gmail.com' }
29 | s.source = { :git => 'https://github.com/yuriiik/ISVImageScrollView.git', :tag => s.version.to_s }
30 | # s.social_media_url = 'https://twitter.com/'
31 |
32 | s.ios.deployment_target = '8.0'
33 |
34 | s.source_files = 'Sources/ISVImageScrollView/**/*'
35 |
36 | # s.resource_bundles = {
37 | # 'ISVImageScrollView' => ['ISVImageScrollView/Assets/*.png']
38 | # }
39 |
40 | # s.public_header_files = 'Pod/Classes/**/*.h'
41 | # s.frameworks = 'UIKit', 'MapKit'
42 | # s.dependency 'AFNetworking', '~> 2.3'
43 | end
44 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2017 kupratsevich@gmail.com
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 |
--------------------------------------------------------------------------------
/Package.swift:
--------------------------------------------------------------------------------
1 | // swift-tools-version:5.2
2 | // The swift-tools-version declares the minimum version of Swift required to build this package.
3 |
4 | import PackageDescription
5 |
6 | let package = Package(
7 | name: "ISVImageScrollView",
8 | products: [
9 | // Products define the executables and libraries produced by a package, and make them visible to other packages.
10 | .library(
11 | name: "ISVImageScrollView",
12 | targets: ["ISVImageScrollView"]),
13 | ],
14 | dependencies: [
15 | // Dependencies declare other packages that this package depends on.
16 | // .package(url: /* package url */, from: "1.0.0"),
17 | ],
18 | targets: [
19 | // Targets are the basic building blocks of a package. A target can define a module or a test suite.
20 | // Targets can depend on other targets in this package, and on products in packages which this package depends on.
21 | .target(
22 | name: "ISVImageScrollView",
23 | dependencies: []),
24 | .testTarget(
25 | name: "ISVImageScrollViewTests",
26 | dependencies: ["ISVImageScrollView"]),
27 | ]
28 | )
29 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # ISVImageScrollView
2 |
3 | [](https://travis-ci.org/kupratsevich@gmail.com/ISVImageScrollView)
4 | [](http://cocoapods.org/pods/ISVImageScrollView)
5 | [](http://cocoapods.org/pods/ISVImageScrollView)
6 | [](http://cocoapods.org/pods/ISVImageScrollView)
7 |
8 | A subclass of the UIScrollView tweaked for image preview with zooming, scrolling and rotation support.
9 |
10 | ## Overview
11 |
12 | When you need to incorporate an image preview into your application, usually you start with the UIScrollView and then spend hours tweaking it to get functionality similar to the default Photos app. This control provides you out-of-the-box functionality to zoom, scroll and rotate an UIImageView attached to it.
13 |
14 | ## Features
15 |
16 | * Pinch to zoom and scroll
17 | * Tap to zoom
18 | * Scale image when scroll view bounds change, e.g. after rotation
19 | * Set appropriate content offset after rotation to make sure visible content remains the same
20 |
21 | ## Example
22 |
23 | To run the example project, clone the repo, and run `pod install` from the Example directory first.
24 |
25 | ## Requirements
26 |
27 | * Tested on iOS 9.3 and higher, but should work on iOS 8.x as well
28 |
29 | ## Installation
30 |
31 | ### CocoaPods
32 |
33 | ISVImageScrollView is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile:
34 |
35 | ```ruby
36 | pod 'ISVImageScrollView'
37 | ```
38 |
39 | ### Swift Package Manager
40 |
41 | ISVImageScrollView is also available via the Swift Package Manager.
42 |
43 | ## Usage
44 |
45 | ISVImageScrollView is very easy to use.
46 | 1. Create a __UIImageView__ instance and assign it an image.
47 | 2. Create an __ISVImageScrollView__ instance (either programmatically or via the Storyboard/XIB) and assign the created UIImageView object to its __imageView__ property.
48 | 3. Don't forget to set __maximumZoomScale__ and __delegate__ properties of the ISVImageScrollView instance.
49 | 4. Finally in delegate class implement __viewForZoomingInScrollView:__ method and return the UIImageView object created in step 1.
50 |
51 | ```swift
52 | let image = UIImage(named: "Photo.jpg")
53 | self.imageView = UIImageView(image: image)
54 | self.imageScrollView.imageView = self.imageView
55 | self.imageScrollView.maximumZoomScale = 4.0
56 | self.imageScrollView.delegate = self
57 | ```
58 | ```swift
59 | func viewForZooming(in scrollView: UIScrollView) -> UIView? {
60 | return self.imageView
61 | }
62 | ```
63 |
64 | ## Author
65 |
66 | Yurii Kupratsevych
67 |
68 | kupratsevich@gmail.com
69 |
70 | ## License
71 |
72 | ISVImageScrollView is available under the MIT license. See the LICENSE file for more info.
73 |
--------------------------------------------------------------------------------
/Sources/ISVImageScrollView/ISVImageScrollView.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ISVImageScrollView.swift
3 | // ISVImageScrollView_Example
4 | //
5 | // Created by Yurii Kupratsevych on 17.06.2020.
6 | // Copyright © 2020 kupratsevich@gmail.com. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | public class ISVImageScrollView: UIScrollView, UIGestureRecognizerDelegate {
12 |
13 | // MARK: - Public
14 |
15 | public var imageView: UIImageView? {
16 | didSet {
17 | oldValue?.removeGestureRecognizer(self.tap)
18 | oldValue?.removeFromSuperview()
19 | if let imageView = self.imageView {
20 | self.initialImageFrame = .null
21 | imageView.isUserInteractionEnabled = true
22 | imageView.addGestureRecognizer(self.tap)
23 | self.addSubview(imageView)
24 | }
25 | }
26 | }
27 |
28 | // MARK: - Initialization
29 |
30 | override init(frame: CGRect) {
31 | super.init(frame: frame)
32 | self.configure()
33 | }
34 |
35 | required init?(coder: NSCoder) {
36 | super.init(coder: coder)
37 | self.configure()
38 | }
39 |
40 | deinit {
41 | self.stopObservingBoundsChange()
42 | }
43 |
44 | // MARK: - UIScrollView
45 |
46 | public override func layoutSubviews() {
47 | super.layoutSubviews()
48 | self.setupInitialImageFrame()
49 | }
50 |
51 | public override var contentOffset: CGPoint {
52 | didSet {
53 | let contentSize = self.contentSize
54 | let scrollViewSize = self.bounds.size
55 | var newContentOffset = contentOffset
56 |
57 | if contentSize.width < scrollViewSize.width {
58 | newContentOffset.x = (contentSize.width - scrollViewSize.width) * 0.5
59 | }
60 |
61 | if contentSize.height < scrollViewSize.height {
62 | newContentOffset.y = (contentSize.height - scrollViewSize.height) * 0.5
63 | }
64 |
65 | super.contentOffset = newContentOffset
66 | }
67 | }
68 |
69 | // MARK: - UIGestureRecognizerDelegate
70 |
71 | public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
72 | return otherGestureRecognizer === self.panGestureRecognizer
73 | }
74 |
75 | // MARK: - Private: Tap to Zoom
76 |
77 | private lazy var tap: UITapGestureRecognizer = {
78 | let tap = UITapGestureRecognizer(target: self, action: #selector(tapToZoom(_:)))
79 | tap.numberOfTapsRequired = 2
80 | tap.delegate = self
81 | return tap
82 | }()
83 |
84 | @IBAction private func tapToZoom(_ sender: UIGestureRecognizer) {
85 | guard sender.state == .ended else { return }
86 | if self.zoomScale > self.minimumZoomScale {
87 | self.setZoomScale(self.minimumZoomScale, animated: true)
88 | } else {
89 | guard let imageView = self.imageView else { return }
90 | let tapLocation = sender.location(in: imageView)
91 | let zoomRectWidth = imageView.frame.size.width / self.maximumZoomScale;
92 | let zoomRectHeight = imageView.frame.size.height / self.maximumZoomScale;
93 | let zoomRectX = tapLocation.x - zoomRectWidth * 0.5;
94 | let zoomRectY = tapLocation.y - zoomRectHeight * 0.5;
95 | let zoomRect = CGRect(
96 | x: zoomRectX,
97 | y: zoomRectY,
98 | width: zoomRectWidth,
99 | height: zoomRectHeight)
100 | self.zoom(to: zoomRect, animated: true)
101 | }
102 | }
103 |
104 | // MARK: - Private: Geometry
105 |
106 | private var initialImageFrame: CGRect = .null
107 |
108 | private var imageAspectRatio: CGFloat {
109 | guard let image = self.imageView?.image else { return 1 }
110 | return image.size.width / image.size.height
111 | }
112 |
113 | private func configure() {
114 | self.showsVerticalScrollIndicator = false
115 | self.showsHorizontalScrollIndicator = false
116 | self.startObservingBoundsChange()
117 | }
118 |
119 | private func rectSize(for aspectRatio: CGFloat, thatFits size: CGSize) -> CGSize {
120 | let containerWidth = size.width
121 | let containerHeight = size.height
122 | var resultWidth: CGFloat = 0
123 | var resultHeight: CGFloat = 0
124 |
125 | if aspectRatio <= 0 || containerHeight <= 0 {
126 | return size
127 | }
128 |
129 | if containerWidth / containerHeight >= aspectRatio {
130 | resultHeight = containerHeight
131 | resultWidth = containerHeight * aspectRatio
132 | } else {
133 | resultWidth = containerWidth
134 | resultHeight = containerWidth / aspectRatio
135 | }
136 |
137 | return CGSize(width: resultWidth, height: resultHeight)
138 | }
139 |
140 | private func scaleImageForTransition(from oldBounds: CGRect, to newBounds: CGRect) {
141 | guard let imageView = self.imageView else { return}
142 |
143 | let oldContentOffset = CGPoint(x: oldBounds.origin.x, y: oldBounds.origin.y)
144 | let oldSize = oldBounds.size
145 | let newSize = newBounds.size
146 | var containedImageSizeOld = self.rectSize(for: self.imageAspectRatio, thatFits: oldSize)
147 | let containedImageSizeNew = self.rectSize(for: self.imageAspectRatio, thatFits: newSize)
148 |
149 | if containedImageSizeOld.height <= 0 {
150 | containedImageSizeOld = containedImageSizeNew
151 | }
152 |
153 | let orientationRatio = containedImageSizeNew.height / containedImageSizeOld.height
154 | let transform = CGAffineTransform(scaleX: orientationRatio, y: orientationRatio)
155 | self.imageView?.frame = imageView.frame.applying(transform)
156 | self.contentSize = imageView.frame.size;
157 |
158 | var xOffset = (oldContentOffset.x + oldSize.width * 0.5) * orientationRatio - newSize.width * 0.5
159 | var yOffset = (oldContentOffset.y + oldSize.height * 0.5) * orientationRatio - newSize.height * 0.5
160 |
161 | xOffset -= max(xOffset + newSize.width - self.contentSize.width, 0)
162 | yOffset -= max(yOffset + newSize.height - self.contentSize.height, 0)
163 | xOffset -= min(xOffset, 0)
164 | yOffset -= min(yOffset, 0)
165 |
166 | self.contentOffset = CGPoint(x: xOffset, y: yOffset)
167 | }
168 |
169 | private func setupInitialImageFrame() {
170 | guard self.imageView != nil, self.initialImageFrame == .null else { return }
171 | let imageViewSize = self.rectSize(for: self.imageAspectRatio, thatFits: self.bounds.size)
172 | self.initialImageFrame = CGRect(x: 0, y: 0, width: imageViewSize.width, height: imageViewSize.height)
173 | self.imageView?.frame = self.initialImageFrame
174 | self.contentSize = self.initialImageFrame.size
175 | }
176 |
177 | // MARK: - Private: KVO
178 |
179 | private var boundsObserver: NSKeyValueObservation?
180 |
181 | private func startObservingBoundsChange() {
182 | self.boundsObserver = self.observe(
183 | \.self.bounds,
184 | options: [.old, .new],
185 | changeHandler: { [weak self] (object, change) in
186 | if let oldRect = change.oldValue,
187 | let newRect = change.newValue,
188 | oldRect.size != newRect.size {
189 | self?.scaleImageForTransition(from: oldRect, to: newRect)
190 | }
191 | })
192 | }
193 |
194 | private func stopObservingBoundsChange() {
195 | self.boundsObserver?.invalidate()
196 | self.boundsObserver = nil
197 | }
198 | }
199 |
--------------------------------------------------------------------------------
/Tests/ISVImageScrollViewTests/ISVImageScrollViewTests.swift:
--------------------------------------------------------------------------------
1 | import XCTest
2 | @testable import ISVImageScrollView
3 |
4 | final class ISVImageScrollViewTests: XCTestCase {}
5 |
--------------------------------------------------------------------------------
/Tests/ISVImageScrollViewTests/XCTestManifests.swift:
--------------------------------------------------------------------------------
1 | import XCTest
2 |
3 | #if !canImport(ObjectiveC)
4 | public func allTests() -> [XCTestCaseEntry] {
5 | return [
6 | testCase(ISVImageScrollViewTests.allTests),
7 | ]
8 | }
9 | #endif
10 |
--------------------------------------------------------------------------------
/Tests/LinuxMain.swift:
--------------------------------------------------------------------------------
1 | import XCTest
2 |
3 | import ISVImageScrollViewTests
4 |
5 | var tests = [XCTestCaseEntry]()
6 | tests += ISVImageScrollViewTests.allTests()
7 | XCTMain(tests)
8 |
--------------------------------------------------------------------------------