├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── ZPScrollerScaleView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── admin.xcuserdatad │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── admin.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Pods-ZPScrollerScaleView_Example.xcscheme │ │ │ ├── Pods-ZPScrollerScaleView_Tests.xcscheme │ │ │ ├── ZPScrollerScaleView.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── Pods-ZPScrollerScaleView_Example │ │ ├── Pods-ZPScrollerScaleView_Example-Info.plist │ │ ├── Pods-ZPScrollerScaleView_Example-acknowledgements.markdown │ │ ├── Pods-ZPScrollerScaleView_Example-acknowledgements.plist │ │ ├── Pods-ZPScrollerScaleView_Example-dummy.m │ │ ├── Pods-ZPScrollerScaleView_Example-frameworks.sh │ │ ├── Pods-ZPScrollerScaleView_Example-umbrella.h │ │ ├── Pods-ZPScrollerScaleView_Example.debug.xcconfig │ │ ├── Pods-ZPScrollerScaleView_Example.modulemap │ │ └── Pods-ZPScrollerScaleView_Example.release.xcconfig │ │ ├── Pods-ZPScrollerScaleView_Tests │ │ ├── Pods-ZPScrollerScaleView_Tests-Info.plist │ │ ├── Pods-ZPScrollerScaleView_Tests-acknowledgements.markdown │ │ ├── Pods-ZPScrollerScaleView_Tests-acknowledgements.plist │ │ ├── Pods-ZPScrollerScaleView_Tests-dummy.m │ │ ├── Pods-ZPScrollerScaleView_Tests-umbrella.h │ │ ├── Pods-ZPScrollerScaleView_Tests.debug.xcconfig │ │ ├── Pods-ZPScrollerScaleView_Tests.modulemap │ │ └── Pods-ZPScrollerScaleView_Tests.release.xcconfig │ │ └── ZPScrollerScaleView │ │ ├── ZPScrollerScaleView-Info.plist │ │ ├── ZPScrollerScaleView-dummy.m │ │ ├── ZPScrollerScaleView-prefix.pch │ │ ├── ZPScrollerScaleView-umbrella.h │ │ ├── ZPScrollerScaleView.modulemap │ │ └── ZPScrollerScaleView.xcconfig ├── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── ZPScrollerScaleView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ZPScrollerScaleView-Example.xcscheme ├── ZPScrollerScaleView.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── admin.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── ZPScrollerScaleView │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── ZPScrollerScaleView-Info.plist │ ├── ZPScrollerScaleView-Prefix.pch │ ├── en.lproj │ └── InfoPlist.strings │ ├── main.m │ ├── zppAppDelegate.h │ ├── zppAppDelegate.m │ ├── zppNoPageEnableController.h │ ├── zppNoPageEnableController.m │ ├── zppPageEnableController.h │ ├── zppPageEnableController.m │ ├── zppViewController.h │ └── zppViewController.m ├── LICENSE ├── README.md ├── ZPScrollerScaleView.podspec ├── ZPScrollerScaleView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── ZPScrollerScaleView.h │ └── ZPScrollerScaleView.m └── _Pods.xcodeproj /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | platform :ios, '8.0' 4 | 5 | target 'ZPScrollerScaleView_Example' do 6 | pod 'ZPScrollerScaleView', :path => '../' 7 | 8 | target 'ZPScrollerScaleView_Tests' do 9 | inherit! :search_paths 10 | 11 | 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ZPScrollerScaleView (1.0.0) 3 | 4 | DEPENDENCIES: 5 | - ZPScrollerScaleView (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | ZPScrollerScaleView: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | ZPScrollerScaleView: 33619c8a572655cb50bd78112c62f290492c2408 13 | 14 | PODFILE CHECKSUM: 7ea1c72fd7d4a08df50ea4ac9e5748ec2c2e264f 15 | 16 | COCOAPODS: 1.7.5 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ZPScrollerScaleView.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ZPScrollerScaleView", 3 | "version": "1.0.0", 4 | "summary": "ZPScrollerScaleView: Loop scroll + scroll scale implementation", 5 | "description": "TODO: Loop scroll + scroll scale implementation.", 6 | "homepage": "https://github.com/ZPP506/ZPScrollerScaleView", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "ZPP506": "944160330@qq.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/ZPP506/ZPScrollerScaleView.git", 16 | "tag": "1.0.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "ZPScrollerScaleView/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ZPScrollerScaleView (1.0.0) 3 | 4 | DEPENDENCIES: 5 | - ZPScrollerScaleView (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | ZPScrollerScaleView: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | ZPScrollerScaleView: 33619c8a572655cb50bd78112c62f290492c2408 13 | 14 | PODFILE CHECKSUM: 7ea1c72fd7d4a08df50ea4ac9e5748ec2c2e264f 15 | 16 | COCOAPODS: 1.7.5 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 | 220DE4BB99386BE543272B27AE57CAEC /* Pods-ZPScrollerScaleView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 297F3DF2488FCD40B8049C7F3DC5EC7D /* Pods-ZPScrollerScaleView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 684C1292A50F82C79C74E06AE7759836 /* Pods-ZPScrollerScaleView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D7B82711DB47042A22DD8848C807543 /* Pods-ZPScrollerScaleView_Tests-dummy.m */; }; 12 | 89832DB77ECEE43165B4BFBD101C611C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 13 | 91C1E56F04A2190139280A4CBA91BB78 /* ZPScrollerScaleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A997EED736A078830E951B91CC168C2 /* ZPScrollerScaleView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 9CF9159E6E9EF76E1F0353072112D676 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 15 | AC762CFF16D68B07289D84A10989C209 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 16 | AF26BAFBB3A26CC9A551C095945FAF30 /* ZPScrollerScaleView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 44784CAA63E1BF61EA1E89E3A18A37AB /* ZPScrollerScaleView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | B67FE950E85BBC11B6C2AFF042763303 /* ZPScrollerScaleView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36744633BBAB7D3A928359AF89600561 /* ZPScrollerScaleView-dummy.m */; }; 18 | B8A83DC39E3BAECF6570A4D11831C420 /* Pods-ZPScrollerScaleView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F276A5A4C3AD09077C6ABD2AB64A14C /* Pods-ZPScrollerScaleView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | D58A8E86BF11868BBEA2C5EAC8C91A3F /* ZPScrollerScaleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 14111A621F3B69AB0D9060E42A75C708 /* ZPScrollerScaleView.m */; }; 20 | F209E374C56B379B00ED6A7871E25D86 /* Pods-ZPScrollerScaleView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C561251B5680A47EAAA8D92A5626F2B4 /* Pods-ZPScrollerScaleView_Example-dummy.m */; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | A62B08040C15755AE5F071F5C9AF11E0 /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = 31191A1D3489BF48F4B5DF8222F1216E; 29 | remoteInfo = ZPScrollerScaleView; 30 | }; 31 | AD56C6BBB323703FCD5D415A46F4CA7A /* PBXContainerItemProxy */ = { 32 | isa = PBXContainerItemProxy; 33 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 34 | proxyType = 1; 35 | remoteGlobalIDString = 8E9A3FAA1E518B2655B15CD862A6C213; 36 | remoteInfo = "Pods-ZPScrollerScaleView_Example"; 37 | }; 38 | /* End PBXContainerItemProxy section */ 39 | 40 | /* Begin PBXFileReference section */ 41 | 0A997EED736A078830E951B91CC168C2 /* ZPScrollerScaleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZPScrollerScaleView.h; path = ZPScrollerScaleView/Classes/ZPScrollerScaleView.h; sourceTree = ""; }; 42 | 0D7B82711DB47042A22DD8848C807543 /* Pods-ZPScrollerScaleView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ZPScrollerScaleView_Tests-dummy.m"; sourceTree = ""; }; 43 | 14111A621F3B69AB0D9060E42A75C708 /* ZPScrollerScaleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZPScrollerScaleView.m; path = ZPScrollerScaleView/Classes/ZPScrollerScaleView.m; sourceTree = ""; }; 44 | 1EC01181EF1C082AE78C8509071607E6 /* ZPScrollerScaleView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ZPScrollerScaleView.modulemap; sourceTree = ""; }; 45 | 2323B07FD42F67FCDC310F1830ABE9C8 /* Pods-ZPScrollerScaleView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ZPScrollerScaleView_Example.modulemap"; sourceTree = ""; }; 46 | 297F3DF2488FCD40B8049C7F3DC5EC7D /* Pods-ZPScrollerScaleView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ZPScrollerScaleView_Example-umbrella.h"; sourceTree = ""; }; 47 | 2A3CA61C7EC2EBAB176B44E72804160F /* Pods-ZPScrollerScaleView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ZPScrollerScaleView_Example-acknowledgements.plist"; sourceTree = ""; }; 48 | 2EC0C0D0C5093F7FD756CD772C106AFC /* Pods-ZPScrollerScaleView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ZPScrollerScaleView_Tests.modulemap"; sourceTree = ""; }; 49 | 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; }; 50 | 36744633BBAB7D3A928359AF89600561 /* ZPScrollerScaleView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ZPScrollerScaleView-dummy.m"; sourceTree = ""; }; 51 | 36A8112EE6220C03DB2C381F53D2C022 /* Pods_ZPScrollerScaleView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_ZPScrollerScaleView_Tests.framework; path = "Pods-ZPScrollerScaleView_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 52 | 44784CAA63E1BF61EA1E89E3A18A37AB /* ZPScrollerScaleView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZPScrollerScaleView-umbrella.h"; sourceTree = ""; }; 53 | 44C812DCD6F59205670790D19E25D0F3 /* Pods-ZPScrollerScaleView_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ZPScrollerScaleView_Tests-Info.plist"; sourceTree = ""; }; 54 | 499196728ABB0BE14106006925850BE9 /* Pods-ZPScrollerScaleView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ZPScrollerScaleView_Tests-acknowledgements.plist"; sourceTree = ""; }; 55 | 5F276A5A4C3AD09077C6ABD2AB64A14C /* Pods-ZPScrollerScaleView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ZPScrollerScaleView_Tests-umbrella.h"; sourceTree = ""; }; 56 | 69D5465E5B50D125B2F88445B2526268 /* ZPScrollerScaleView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ZPScrollerScaleView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 57 | 729A66AA581FF2A58D3489EE6E8CC656 /* ZPScrollerScaleView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ZPScrollerScaleView-Info.plist"; sourceTree = ""; }; 58 | 733201AA0BBFE2E7E6C57599B42BC773 /* Pods-ZPScrollerScaleView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ZPScrollerScaleView_Example-frameworks.sh"; sourceTree = ""; }; 59 | 7E5FA3979660B2837D7C0F5734B64461 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 60 | 8D84B88E2828C88266268186C8CCFD71 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 61 | 970DABA54AB35E02FE431365C4817D90 /* Pods_ZPScrollerScaleView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_ZPScrollerScaleView_Example.framework; path = "Pods-ZPScrollerScaleView_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 62 | 971BFC8D8EC410BF2D981911A02397EB /* Pods-ZPScrollerScaleView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ZPScrollerScaleView_Example.release.xcconfig"; sourceTree = ""; }; 63 | 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; }; 64 | 9FEE5D45C8F52AD4418D9E013929900A /* ZPScrollerScaleView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZPScrollerScaleView-prefix.pch"; sourceTree = ""; }; 65 | A526BBCA12F9526AB4A5CC0C8066989C /* ZPScrollerScaleView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = ZPScrollerScaleView.framework; path = ZPScrollerScaleView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | A972A2CA92C9BC3807D6FEE1220EB435 /* Pods-ZPScrollerScaleView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ZPScrollerScaleView_Tests.debug.xcconfig"; sourceTree = ""; }; 67 | B5F494657776E581383BB6A4F2DA421B /* Pods-ZPScrollerScaleView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ZPScrollerScaleView_Example-acknowledgements.markdown"; sourceTree = ""; }; 68 | C228B5E2A14A886223682B9F85DCFE2D /* Pods-ZPScrollerScaleView_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ZPScrollerScaleView_Example-Info.plist"; sourceTree = ""; }; 69 | C561251B5680A47EAAA8D92A5626F2B4 /* Pods-ZPScrollerScaleView_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ZPScrollerScaleView_Example-dummy.m"; sourceTree = ""; }; 70 | D75B00C11544873FF26F05407716F791 /* ZPScrollerScaleView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZPScrollerScaleView.xcconfig; sourceTree = ""; }; 71 | E989C7C29B97AEC46E7D9AB98AC9B9AA /* Pods-ZPScrollerScaleView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ZPScrollerScaleView_Example.debug.xcconfig"; sourceTree = ""; }; 72 | EC786E22C28171AE05990A14AD283989 /* Pods-ZPScrollerScaleView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ZPScrollerScaleView_Tests-acknowledgements.markdown"; sourceTree = ""; }; 73 | EE88878A7D214547A5301F6B761AC440 /* Pods-ZPScrollerScaleView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ZPScrollerScaleView_Tests.release.xcconfig"; sourceTree = ""; }; 74 | /* End PBXFileReference section */ 75 | 76 | /* Begin PBXFrameworksBuildPhase section */ 77 | 0BF0F86FBB715C63383205B36E72314D /* Frameworks */ = { 78 | isa = PBXFrameworksBuildPhase; 79 | buildActionMask = 2147483647; 80 | files = ( 81 | 9CF9159E6E9EF76E1F0353072112D676 /* Foundation.framework in Frameworks */, 82 | ); 83 | runOnlyForDeploymentPostprocessing = 0; 84 | }; 85 | 58435AD4318B6C4F92446ABB8A4A0810 /* Frameworks */ = { 86 | isa = PBXFrameworksBuildPhase; 87 | buildActionMask = 2147483647; 88 | files = ( 89 | 89832DB77ECEE43165B4BFBD101C611C /* Foundation.framework in Frameworks */, 90 | ); 91 | runOnlyForDeploymentPostprocessing = 0; 92 | }; 93 | FEAEAB73097B449CB72941F57CDEFC81 /* Frameworks */ = { 94 | isa = PBXFrameworksBuildPhase; 95 | buildActionMask = 2147483647; 96 | files = ( 97 | AC762CFF16D68B07289D84A10989C209 /* Foundation.framework in Frameworks */, 98 | ); 99 | runOnlyForDeploymentPostprocessing = 0; 100 | }; 101 | /* End PBXFrameworksBuildPhase section */ 102 | 103 | /* Begin PBXGroup section */ 104 | 0E57A592A7D4C7F0991F4088E5B65087 /* Development Pods */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 6EB0CE18CC6D1C498C5FA49F0C3785F9 /* ZPScrollerScaleView */, 108 | ); 109 | name = "Development Pods"; 110 | sourceTree = ""; 111 | }; 112 | 16A7A243F9F2B0A60B71F6C3E67F6B5A /* Targets Support Files */ = { 113 | isa = PBXGroup; 114 | children = ( 115 | 329265B5328128DE12C76F4A484D0ED8 /* Pods-ZPScrollerScaleView_Example */, 116 | 2FBD6CFAD8A8F58590BDE15274A408F7 /* Pods-ZPScrollerScaleView_Tests */, 117 | ); 118 | name = "Targets Support Files"; 119 | sourceTree = ""; 120 | }; 121 | 2FBD6CFAD8A8F58590BDE15274A408F7 /* Pods-ZPScrollerScaleView_Tests */ = { 122 | isa = PBXGroup; 123 | children = ( 124 | 2EC0C0D0C5093F7FD756CD772C106AFC /* Pods-ZPScrollerScaleView_Tests.modulemap */, 125 | EC786E22C28171AE05990A14AD283989 /* Pods-ZPScrollerScaleView_Tests-acknowledgements.markdown */, 126 | 499196728ABB0BE14106006925850BE9 /* Pods-ZPScrollerScaleView_Tests-acknowledgements.plist */, 127 | 0D7B82711DB47042A22DD8848C807543 /* Pods-ZPScrollerScaleView_Tests-dummy.m */, 128 | 44C812DCD6F59205670790D19E25D0F3 /* Pods-ZPScrollerScaleView_Tests-Info.plist */, 129 | 5F276A5A4C3AD09077C6ABD2AB64A14C /* Pods-ZPScrollerScaleView_Tests-umbrella.h */, 130 | A972A2CA92C9BC3807D6FEE1220EB435 /* Pods-ZPScrollerScaleView_Tests.debug.xcconfig */, 131 | EE88878A7D214547A5301F6B761AC440 /* Pods-ZPScrollerScaleView_Tests.release.xcconfig */, 132 | ); 133 | name = "Pods-ZPScrollerScaleView_Tests"; 134 | path = "Target Support Files/Pods-ZPScrollerScaleView_Tests"; 135 | sourceTree = ""; 136 | }; 137 | 329265B5328128DE12C76F4A484D0ED8 /* Pods-ZPScrollerScaleView_Example */ = { 138 | isa = PBXGroup; 139 | children = ( 140 | 2323B07FD42F67FCDC310F1830ABE9C8 /* Pods-ZPScrollerScaleView_Example.modulemap */, 141 | B5F494657776E581383BB6A4F2DA421B /* Pods-ZPScrollerScaleView_Example-acknowledgements.markdown */, 142 | 2A3CA61C7EC2EBAB176B44E72804160F /* Pods-ZPScrollerScaleView_Example-acknowledgements.plist */, 143 | C561251B5680A47EAAA8D92A5626F2B4 /* Pods-ZPScrollerScaleView_Example-dummy.m */, 144 | 733201AA0BBFE2E7E6C57599B42BC773 /* Pods-ZPScrollerScaleView_Example-frameworks.sh */, 145 | C228B5E2A14A886223682B9F85DCFE2D /* Pods-ZPScrollerScaleView_Example-Info.plist */, 146 | 297F3DF2488FCD40B8049C7F3DC5EC7D /* Pods-ZPScrollerScaleView_Example-umbrella.h */, 147 | E989C7C29B97AEC46E7D9AB98AC9B9AA /* Pods-ZPScrollerScaleView_Example.debug.xcconfig */, 148 | 971BFC8D8EC410BF2D981911A02397EB /* Pods-ZPScrollerScaleView_Example.release.xcconfig */, 149 | ); 150 | name = "Pods-ZPScrollerScaleView_Example"; 151 | path = "Target Support Files/Pods-ZPScrollerScaleView_Example"; 152 | sourceTree = ""; 153 | }; 154 | 54B20B5A712070C82A6211666FAF5B1F /* Support Files */ = { 155 | isa = PBXGroup; 156 | children = ( 157 | 1EC01181EF1C082AE78C8509071607E6 /* ZPScrollerScaleView.modulemap */, 158 | D75B00C11544873FF26F05407716F791 /* ZPScrollerScaleView.xcconfig */, 159 | 36744633BBAB7D3A928359AF89600561 /* ZPScrollerScaleView-dummy.m */, 160 | 729A66AA581FF2A58D3489EE6E8CC656 /* ZPScrollerScaleView-Info.plist */, 161 | 9FEE5D45C8F52AD4418D9E013929900A /* ZPScrollerScaleView-prefix.pch */, 162 | 44784CAA63E1BF61EA1E89E3A18A37AB /* ZPScrollerScaleView-umbrella.h */, 163 | ); 164 | name = "Support Files"; 165 | path = "Example/Pods/Target Support Files/ZPScrollerScaleView"; 166 | sourceTree = ""; 167 | }; 168 | 6EB0CE18CC6D1C498C5FA49F0C3785F9 /* ZPScrollerScaleView */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 0A997EED736A078830E951B91CC168C2 /* ZPScrollerScaleView.h */, 172 | 14111A621F3B69AB0D9060E42A75C708 /* ZPScrollerScaleView.m */, 173 | BBB76D8D82129D87866172E0D826C440 /* Pod */, 174 | 54B20B5A712070C82A6211666FAF5B1F /* Support Files */, 175 | ); 176 | name = ZPScrollerScaleView; 177 | path = ../..; 178 | sourceTree = ""; 179 | }; 180 | BBB76D8D82129D87866172E0D826C440 /* Pod */ = { 181 | isa = PBXGroup; 182 | children = ( 183 | 8D84B88E2828C88266268186C8CCFD71 /* LICENSE */, 184 | 7E5FA3979660B2837D7C0F5734B64461 /* README.md */, 185 | 69D5465E5B50D125B2F88445B2526268 /* ZPScrollerScaleView.podspec */, 186 | ); 187 | name = Pod; 188 | sourceTree = ""; 189 | }; 190 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { 191 | isa = PBXGroup; 192 | children = ( 193 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, 194 | ); 195 | name = iOS; 196 | sourceTree = ""; 197 | }; 198 | C90AA018D5ED68977BE917A00E85B83D /* Products */ = { 199 | isa = PBXGroup; 200 | children = ( 201 | 970DABA54AB35E02FE431365C4817D90 /* Pods_ZPScrollerScaleView_Example.framework */, 202 | 36A8112EE6220C03DB2C381F53D2C022 /* Pods_ZPScrollerScaleView_Tests.framework */, 203 | A526BBCA12F9526AB4A5CC0C8066989C /* ZPScrollerScaleView.framework */, 204 | ); 205 | name = Products; 206 | sourceTree = ""; 207 | }; 208 | CF1408CF629C7361332E53B88F7BD30C = { 209 | isa = PBXGroup; 210 | children = ( 211 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 212 | 0E57A592A7D4C7F0991F4088E5B65087 /* Development Pods */, 213 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 214 | C90AA018D5ED68977BE917A00E85B83D /* Products */, 215 | 16A7A243F9F2B0A60B71F6C3E67F6B5A /* Targets Support Files */, 216 | ); 217 | sourceTree = ""; 218 | }; 219 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 220 | isa = PBXGroup; 221 | children = ( 222 | C0834CEBB1379A84116EF29F93051C60 /* iOS */, 223 | ); 224 | name = Frameworks; 225 | sourceTree = ""; 226 | }; 227 | /* End PBXGroup section */ 228 | 229 | /* Begin PBXHeadersBuildPhase section */ 230 | 303D26C351FC8F1C8DE0C19708E3D400 /* Headers */ = { 231 | isa = PBXHeadersBuildPhase; 232 | buildActionMask = 2147483647; 233 | files = ( 234 | 220DE4BB99386BE543272B27AE57CAEC /* Pods-ZPScrollerScaleView_Example-umbrella.h in Headers */, 235 | ); 236 | runOnlyForDeploymentPostprocessing = 0; 237 | }; 238 | 3C6DE0C9519ECC3448F7F94F086C8C2F /* Headers */ = { 239 | isa = PBXHeadersBuildPhase; 240 | buildActionMask = 2147483647; 241 | files = ( 242 | B8A83DC39E3BAECF6570A4D11831C420 /* Pods-ZPScrollerScaleView_Tests-umbrella.h in Headers */, 243 | ); 244 | runOnlyForDeploymentPostprocessing = 0; 245 | }; 246 | A0D1F11E3CBD743F1F40763258FBD5B5 /* Headers */ = { 247 | isa = PBXHeadersBuildPhase; 248 | buildActionMask = 2147483647; 249 | files = ( 250 | AF26BAFBB3A26CC9A551C095945FAF30 /* ZPScrollerScaleView-umbrella.h in Headers */, 251 | 91C1E56F04A2190139280A4CBA91BB78 /* ZPScrollerScaleView.h in Headers */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | /* End PBXHeadersBuildPhase section */ 256 | 257 | /* Begin PBXNativeTarget section */ 258 | 31191A1D3489BF48F4B5DF8222F1216E /* ZPScrollerScaleView */ = { 259 | isa = PBXNativeTarget; 260 | buildConfigurationList = 615AF5C2A3E152A524F98785C1265CA6 /* Build configuration list for PBXNativeTarget "ZPScrollerScaleView" */; 261 | buildPhases = ( 262 | A0D1F11E3CBD743F1F40763258FBD5B5 /* Headers */, 263 | 3C4D9851B7EB0A6CA59707D1518D76E2 /* Sources */, 264 | 0BF0F86FBB715C63383205B36E72314D /* Frameworks */, 265 | 1E1625FB3F63F74C192779548301E106 /* Resources */, 266 | ); 267 | buildRules = ( 268 | ); 269 | dependencies = ( 270 | ); 271 | name = ZPScrollerScaleView; 272 | productName = ZPScrollerScaleView; 273 | productReference = A526BBCA12F9526AB4A5CC0C8066989C /* ZPScrollerScaleView.framework */; 274 | productType = "com.apple.product-type.framework"; 275 | }; 276 | 32F01DF4813B406E9DDCBFDE3CDAD890 /* Pods-ZPScrollerScaleView_Tests */ = { 277 | isa = PBXNativeTarget; 278 | buildConfigurationList = DEC1F43A51EFC319DC253FF605070821 /* Build configuration list for PBXNativeTarget "Pods-ZPScrollerScaleView_Tests" */; 279 | buildPhases = ( 280 | 3C6DE0C9519ECC3448F7F94F086C8C2F /* Headers */, 281 | D64425EE7DEA6F014A9C3F556F659BD8 /* Sources */, 282 | FEAEAB73097B449CB72941F57CDEFC81 /* Frameworks */, 283 | 3822818A4F8FA64A2CAFC1E8CCEEA84E /* Resources */, 284 | ); 285 | buildRules = ( 286 | ); 287 | dependencies = ( 288 | 303A095643C57D8D173954590FFE79C3 /* PBXTargetDependency */, 289 | ); 290 | name = "Pods-ZPScrollerScaleView_Tests"; 291 | productName = "Pods-ZPScrollerScaleView_Tests"; 292 | productReference = 36A8112EE6220C03DB2C381F53D2C022 /* Pods_ZPScrollerScaleView_Tests.framework */; 293 | productType = "com.apple.product-type.framework"; 294 | }; 295 | 8E9A3FAA1E518B2655B15CD862A6C213 /* Pods-ZPScrollerScaleView_Example */ = { 296 | isa = PBXNativeTarget; 297 | buildConfigurationList = 0B3724EC127D9B3CB9DDCB24A3D1AB37 /* Build configuration list for PBXNativeTarget "Pods-ZPScrollerScaleView_Example" */; 298 | buildPhases = ( 299 | 303D26C351FC8F1C8DE0C19708E3D400 /* Headers */, 300 | 6F6ACF0A7DEF4C6708E8708F3D057284 /* Sources */, 301 | 58435AD4318B6C4F92446ABB8A4A0810 /* Frameworks */, 302 | 1F25A578B28EFDEF8F39E881D84BFAE3 /* Resources */, 303 | ); 304 | buildRules = ( 305 | ); 306 | dependencies = ( 307 | B61802B500B5DB1F9BA7AE3E3D1784A0 /* PBXTargetDependency */, 308 | ); 309 | name = "Pods-ZPScrollerScaleView_Example"; 310 | productName = "Pods-ZPScrollerScaleView_Example"; 311 | productReference = 970DABA54AB35E02FE431365C4817D90 /* Pods_ZPScrollerScaleView_Example.framework */; 312 | productType = "com.apple.product-type.framework"; 313 | }; 314 | /* End PBXNativeTarget section */ 315 | 316 | /* Begin PBXProject section */ 317 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 318 | isa = PBXProject; 319 | attributes = { 320 | LastSwiftUpdateCheck = 1100; 321 | LastUpgradeCheck = 1100; 322 | }; 323 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 324 | compatibilityVersion = "Xcode 3.2"; 325 | developmentRegion = en; 326 | hasScannedForEncodings = 0; 327 | knownRegions = ( 328 | en, 329 | ); 330 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 331 | productRefGroup = C90AA018D5ED68977BE917A00E85B83D /* Products */; 332 | projectDirPath = ""; 333 | projectRoot = ""; 334 | targets = ( 335 | 8E9A3FAA1E518B2655B15CD862A6C213 /* Pods-ZPScrollerScaleView_Example */, 336 | 32F01DF4813B406E9DDCBFDE3CDAD890 /* Pods-ZPScrollerScaleView_Tests */, 337 | 31191A1D3489BF48F4B5DF8222F1216E /* ZPScrollerScaleView */, 338 | ); 339 | }; 340 | /* End PBXProject section */ 341 | 342 | /* Begin PBXResourcesBuildPhase section */ 343 | 1E1625FB3F63F74C192779548301E106 /* Resources */ = { 344 | isa = PBXResourcesBuildPhase; 345 | buildActionMask = 2147483647; 346 | files = ( 347 | ); 348 | runOnlyForDeploymentPostprocessing = 0; 349 | }; 350 | 1F25A578B28EFDEF8F39E881D84BFAE3 /* Resources */ = { 351 | isa = PBXResourcesBuildPhase; 352 | buildActionMask = 2147483647; 353 | files = ( 354 | ); 355 | runOnlyForDeploymentPostprocessing = 0; 356 | }; 357 | 3822818A4F8FA64A2CAFC1E8CCEEA84E /* Resources */ = { 358 | isa = PBXResourcesBuildPhase; 359 | buildActionMask = 2147483647; 360 | files = ( 361 | ); 362 | runOnlyForDeploymentPostprocessing = 0; 363 | }; 364 | /* End PBXResourcesBuildPhase section */ 365 | 366 | /* Begin PBXSourcesBuildPhase section */ 367 | 3C4D9851B7EB0A6CA59707D1518D76E2 /* Sources */ = { 368 | isa = PBXSourcesBuildPhase; 369 | buildActionMask = 2147483647; 370 | files = ( 371 | B67FE950E85BBC11B6C2AFF042763303 /* ZPScrollerScaleView-dummy.m in Sources */, 372 | D58A8E86BF11868BBEA2C5EAC8C91A3F /* ZPScrollerScaleView.m in Sources */, 373 | ); 374 | runOnlyForDeploymentPostprocessing = 0; 375 | }; 376 | 6F6ACF0A7DEF4C6708E8708F3D057284 /* Sources */ = { 377 | isa = PBXSourcesBuildPhase; 378 | buildActionMask = 2147483647; 379 | files = ( 380 | F209E374C56B379B00ED6A7871E25D86 /* Pods-ZPScrollerScaleView_Example-dummy.m in Sources */, 381 | ); 382 | runOnlyForDeploymentPostprocessing = 0; 383 | }; 384 | D64425EE7DEA6F014A9C3F556F659BD8 /* Sources */ = { 385 | isa = PBXSourcesBuildPhase; 386 | buildActionMask = 2147483647; 387 | files = ( 388 | 684C1292A50F82C79C74E06AE7759836 /* Pods-ZPScrollerScaleView_Tests-dummy.m in Sources */, 389 | ); 390 | runOnlyForDeploymentPostprocessing = 0; 391 | }; 392 | /* End PBXSourcesBuildPhase section */ 393 | 394 | /* Begin PBXTargetDependency section */ 395 | 303A095643C57D8D173954590FFE79C3 /* PBXTargetDependency */ = { 396 | isa = PBXTargetDependency; 397 | name = "Pods-ZPScrollerScaleView_Example"; 398 | target = 8E9A3FAA1E518B2655B15CD862A6C213 /* Pods-ZPScrollerScaleView_Example */; 399 | targetProxy = AD56C6BBB323703FCD5D415A46F4CA7A /* PBXContainerItemProxy */; 400 | }; 401 | B61802B500B5DB1F9BA7AE3E3D1784A0 /* PBXTargetDependency */ = { 402 | isa = PBXTargetDependency; 403 | name = ZPScrollerScaleView; 404 | target = 31191A1D3489BF48F4B5DF8222F1216E /* ZPScrollerScaleView */; 405 | targetProxy = A62B08040C15755AE5F071F5C9AF11E0 /* PBXContainerItemProxy */; 406 | }; 407 | /* End PBXTargetDependency section */ 408 | 409 | /* Begin XCBuildConfiguration section */ 410 | 244CE7B1720EAD68D5651B3E647D5517 /* Release */ = { 411 | isa = XCBuildConfiguration; 412 | baseConfigurationReference = EE88878A7D214547A5301F6B761AC440 /* Pods-ZPScrollerScaleView_Tests.release.xcconfig */; 413 | buildSettings = { 414 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 415 | CODE_SIGN_IDENTITY = ""; 416 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 417 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 418 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 419 | CURRENT_PROJECT_VERSION = 1; 420 | DEFINES_MODULE = YES; 421 | DYLIB_COMPATIBILITY_VERSION = 1; 422 | DYLIB_CURRENT_VERSION = 1; 423 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 424 | INFOPLIST_FILE = "Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_Tests-Info.plist"; 425 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 426 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 427 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 428 | MACH_O_TYPE = staticlib; 429 | MODULEMAP_FILE = "Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_Tests.modulemap"; 430 | OTHER_LDFLAGS = ""; 431 | OTHER_LIBTOOLFLAGS = ""; 432 | PODS_ROOT = "$(SRCROOT)"; 433 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 434 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 435 | SDKROOT = iphoneos; 436 | SKIP_INSTALL = YES; 437 | TARGETED_DEVICE_FAMILY = "1,2"; 438 | VALIDATE_PRODUCT = YES; 439 | VERSIONING_SYSTEM = "apple-generic"; 440 | VERSION_INFO_PREFIX = ""; 441 | }; 442 | name = Release; 443 | }; 444 | 3AC5319BC284BD9150430A93A8AD794B /* Release */ = { 445 | isa = XCBuildConfiguration; 446 | baseConfigurationReference = 971BFC8D8EC410BF2D981911A02397EB /* Pods-ZPScrollerScaleView_Example.release.xcconfig */; 447 | buildSettings = { 448 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 449 | CODE_SIGN_IDENTITY = ""; 450 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 451 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 452 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 453 | CURRENT_PROJECT_VERSION = 1; 454 | DEFINES_MODULE = YES; 455 | DYLIB_COMPATIBILITY_VERSION = 1; 456 | DYLIB_CURRENT_VERSION = 1; 457 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 458 | INFOPLIST_FILE = "Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example-Info.plist"; 459 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 460 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 461 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 462 | MACH_O_TYPE = staticlib; 463 | MODULEMAP_FILE = "Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example.modulemap"; 464 | OTHER_LDFLAGS = ""; 465 | OTHER_LIBTOOLFLAGS = ""; 466 | PODS_ROOT = "$(SRCROOT)"; 467 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 468 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 469 | SDKROOT = iphoneos; 470 | SKIP_INSTALL = YES; 471 | TARGETED_DEVICE_FAMILY = "1,2"; 472 | VALIDATE_PRODUCT = YES; 473 | VERSIONING_SYSTEM = "apple-generic"; 474 | VERSION_INFO_PREFIX = ""; 475 | }; 476 | name = Release; 477 | }; 478 | 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */ = { 479 | isa = XCBuildConfiguration; 480 | buildSettings = { 481 | ALWAYS_SEARCH_USER_PATHS = NO; 482 | CLANG_ANALYZER_NONNULL = YES; 483 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 484 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 485 | CLANG_CXX_LIBRARY = "libc++"; 486 | CLANG_ENABLE_MODULES = YES; 487 | CLANG_ENABLE_OBJC_ARC = YES; 488 | CLANG_ENABLE_OBJC_WEAK = YES; 489 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 490 | CLANG_WARN_BOOL_CONVERSION = YES; 491 | CLANG_WARN_COMMA = YES; 492 | CLANG_WARN_CONSTANT_CONVERSION = YES; 493 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 494 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 495 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 496 | CLANG_WARN_EMPTY_BODY = YES; 497 | CLANG_WARN_ENUM_CONVERSION = YES; 498 | CLANG_WARN_INFINITE_RECURSION = YES; 499 | CLANG_WARN_INT_CONVERSION = YES; 500 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 501 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 502 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 503 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 504 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 505 | CLANG_WARN_STRICT_PROTOTYPES = YES; 506 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 507 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 508 | CLANG_WARN_UNREACHABLE_CODE = YES; 509 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 510 | COPY_PHASE_STRIP = NO; 511 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 512 | ENABLE_NS_ASSERTIONS = NO; 513 | ENABLE_STRICT_OBJC_MSGSEND = YES; 514 | GCC_C_LANGUAGE_STANDARD = gnu11; 515 | GCC_NO_COMMON_BLOCKS = YES; 516 | GCC_PREPROCESSOR_DEFINITIONS = ( 517 | "POD_CONFIGURATION_RELEASE=1", 518 | "$(inherited)", 519 | ); 520 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 521 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 522 | GCC_WARN_UNDECLARED_SELECTOR = YES; 523 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 524 | GCC_WARN_UNUSED_FUNCTION = YES; 525 | GCC_WARN_UNUSED_VARIABLE = YES; 526 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 527 | MTL_ENABLE_DEBUG_INFO = NO; 528 | MTL_FAST_MATH = YES; 529 | PRODUCT_NAME = "$(TARGET_NAME)"; 530 | STRIP_INSTALLED_PRODUCT = NO; 531 | SWIFT_COMPILATION_MODE = wholemodule; 532 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 533 | SWIFT_VERSION = 5.0; 534 | SYMROOT = "${SRCROOT}/../build"; 535 | }; 536 | name = Release; 537 | }; 538 | 5C961A2C8BB77F64561AADB8609B9A97 /* Release */ = { 539 | isa = XCBuildConfiguration; 540 | baseConfigurationReference = D75B00C11544873FF26F05407716F791 /* ZPScrollerScaleView.xcconfig */; 541 | buildSettings = { 542 | CODE_SIGN_IDENTITY = ""; 543 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 544 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 545 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 546 | CURRENT_PROJECT_VERSION = 1; 547 | DEFINES_MODULE = YES; 548 | DYLIB_COMPATIBILITY_VERSION = 1; 549 | DYLIB_CURRENT_VERSION = 1; 550 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 551 | GCC_PREFIX_HEADER = "Target Support Files/ZPScrollerScaleView/ZPScrollerScaleView-prefix.pch"; 552 | INFOPLIST_FILE = "Target Support Files/ZPScrollerScaleView/ZPScrollerScaleView-Info.plist"; 553 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 554 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 555 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 556 | MODULEMAP_FILE = "Target Support Files/ZPScrollerScaleView/ZPScrollerScaleView.modulemap"; 557 | PRODUCT_MODULE_NAME = ZPScrollerScaleView; 558 | PRODUCT_NAME = ZPScrollerScaleView; 559 | SDKROOT = iphoneos; 560 | SKIP_INSTALL = YES; 561 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 562 | SWIFT_VERSION = 4.0; 563 | TARGETED_DEVICE_FAMILY = "1,2"; 564 | VALIDATE_PRODUCT = YES; 565 | VERSIONING_SYSTEM = "apple-generic"; 566 | VERSION_INFO_PREFIX = ""; 567 | }; 568 | name = Release; 569 | }; 570 | 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */ = { 571 | isa = XCBuildConfiguration; 572 | buildSettings = { 573 | ALWAYS_SEARCH_USER_PATHS = NO; 574 | CLANG_ANALYZER_NONNULL = YES; 575 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 576 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 577 | CLANG_CXX_LIBRARY = "libc++"; 578 | CLANG_ENABLE_MODULES = YES; 579 | CLANG_ENABLE_OBJC_ARC = YES; 580 | CLANG_ENABLE_OBJC_WEAK = YES; 581 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 582 | CLANG_WARN_BOOL_CONVERSION = YES; 583 | CLANG_WARN_COMMA = YES; 584 | CLANG_WARN_CONSTANT_CONVERSION = YES; 585 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 586 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 587 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 588 | CLANG_WARN_EMPTY_BODY = YES; 589 | CLANG_WARN_ENUM_CONVERSION = YES; 590 | CLANG_WARN_INFINITE_RECURSION = YES; 591 | CLANG_WARN_INT_CONVERSION = YES; 592 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 593 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 594 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 595 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 596 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 597 | CLANG_WARN_STRICT_PROTOTYPES = YES; 598 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 599 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 600 | CLANG_WARN_UNREACHABLE_CODE = YES; 601 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 602 | COPY_PHASE_STRIP = NO; 603 | DEBUG_INFORMATION_FORMAT = dwarf; 604 | ENABLE_STRICT_OBJC_MSGSEND = YES; 605 | ENABLE_TESTABILITY = YES; 606 | GCC_C_LANGUAGE_STANDARD = gnu11; 607 | GCC_DYNAMIC_NO_PIC = NO; 608 | GCC_NO_COMMON_BLOCKS = YES; 609 | GCC_OPTIMIZATION_LEVEL = 0; 610 | GCC_PREPROCESSOR_DEFINITIONS = ( 611 | "POD_CONFIGURATION_DEBUG=1", 612 | "DEBUG=1", 613 | "$(inherited)", 614 | ); 615 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 616 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 617 | GCC_WARN_UNDECLARED_SELECTOR = YES; 618 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 619 | GCC_WARN_UNUSED_FUNCTION = YES; 620 | GCC_WARN_UNUSED_VARIABLE = YES; 621 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 622 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 623 | MTL_FAST_MATH = YES; 624 | ONLY_ACTIVE_ARCH = YES; 625 | PRODUCT_NAME = "$(TARGET_NAME)"; 626 | STRIP_INSTALLED_PRODUCT = NO; 627 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 628 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 629 | SWIFT_VERSION = 5.0; 630 | SYMROOT = "${SRCROOT}/../build"; 631 | }; 632 | name = Debug; 633 | }; 634 | B510503A6AAD7FF570637EE9EDA24920 /* Debug */ = { 635 | isa = XCBuildConfiguration; 636 | baseConfigurationReference = A972A2CA92C9BC3807D6FEE1220EB435 /* Pods-ZPScrollerScaleView_Tests.debug.xcconfig */; 637 | buildSettings = { 638 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 639 | CODE_SIGN_IDENTITY = ""; 640 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 641 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 642 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 643 | CURRENT_PROJECT_VERSION = 1; 644 | DEFINES_MODULE = YES; 645 | DYLIB_COMPATIBILITY_VERSION = 1; 646 | DYLIB_CURRENT_VERSION = 1; 647 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 648 | INFOPLIST_FILE = "Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_Tests-Info.plist"; 649 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 650 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 651 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 652 | MACH_O_TYPE = staticlib; 653 | MODULEMAP_FILE = "Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_Tests.modulemap"; 654 | OTHER_LDFLAGS = ""; 655 | OTHER_LIBTOOLFLAGS = ""; 656 | PODS_ROOT = "$(SRCROOT)"; 657 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 658 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 659 | SDKROOT = iphoneos; 660 | SKIP_INSTALL = YES; 661 | TARGETED_DEVICE_FAMILY = "1,2"; 662 | VERSIONING_SYSTEM = "apple-generic"; 663 | VERSION_INFO_PREFIX = ""; 664 | }; 665 | name = Debug; 666 | }; 667 | D2C05EB794F895413E35F9B1020EF424 /* Debug */ = { 668 | isa = XCBuildConfiguration; 669 | baseConfigurationReference = D75B00C11544873FF26F05407716F791 /* ZPScrollerScaleView.xcconfig */; 670 | buildSettings = { 671 | CODE_SIGN_IDENTITY = ""; 672 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 673 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 674 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 675 | CURRENT_PROJECT_VERSION = 1; 676 | DEFINES_MODULE = YES; 677 | DYLIB_COMPATIBILITY_VERSION = 1; 678 | DYLIB_CURRENT_VERSION = 1; 679 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 680 | GCC_PREFIX_HEADER = "Target Support Files/ZPScrollerScaleView/ZPScrollerScaleView-prefix.pch"; 681 | INFOPLIST_FILE = "Target Support Files/ZPScrollerScaleView/ZPScrollerScaleView-Info.plist"; 682 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 683 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 684 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 685 | MODULEMAP_FILE = "Target Support Files/ZPScrollerScaleView/ZPScrollerScaleView.modulemap"; 686 | PRODUCT_MODULE_NAME = ZPScrollerScaleView; 687 | PRODUCT_NAME = ZPScrollerScaleView; 688 | SDKROOT = iphoneos; 689 | SKIP_INSTALL = YES; 690 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 691 | SWIFT_VERSION = 4.0; 692 | TARGETED_DEVICE_FAMILY = "1,2"; 693 | VERSIONING_SYSTEM = "apple-generic"; 694 | VERSION_INFO_PREFIX = ""; 695 | }; 696 | name = Debug; 697 | }; 698 | EA2D587CBB72EDD9852A3DEC0493B5ED /* Debug */ = { 699 | isa = XCBuildConfiguration; 700 | baseConfigurationReference = E989C7C29B97AEC46E7D9AB98AC9B9AA /* Pods-ZPScrollerScaleView_Example.debug.xcconfig */; 701 | buildSettings = { 702 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 703 | CODE_SIGN_IDENTITY = ""; 704 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 705 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 706 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 707 | CURRENT_PROJECT_VERSION = 1; 708 | DEFINES_MODULE = YES; 709 | DYLIB_COMPATIBILITY_VERSION = 1; 710 | DYLIB_CURRENT_VERSION = 1; 711 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 712 | INFOPLIST_FILE = "Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example-Info.plist"; 713 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 714 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 715 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 716 | MACH_O_TYPE = staticlib; 717 | MODULEMAP_FILE = "Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example.modulemap"; 718 | OTHER_LDFLAGS = ""; 719 | OTHER_LIBTOOLFLAGS = ""; 720 | PODS_ROOT = "$(SRCROOT)"; 721 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 722 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 723 | SDKROOT = iphoneos; 724 | SKIP_INSTALL = YES; 725 | TARGETED_DEVICE_FAMILY = "1,2"; 726 | VERSIONING_SYSTEM = "apple-generic"; 727 | VERSION_INFO_PREFIX = ""; 728 | }; 729 | name = Debug; 730 | }; 731 | /* End XCBuildConfiguration section */ 732 | 733 | /* Begin XCConfigurationList section */ 734 | 0B3724EC127D9B3CB9DDCB24A3D1AB37 /* Build configuration list for PBXNativeTarget "Pods-ZPScrollerScaleView_Example" */ = { 735 | isa = XCConfigurationList; 736 | buildConfigurations = ( 737 | EA2D587CBB72EDD9852A3DEC0493B5ED /* Debug */, 738 | 3AC5319BC284BD9150430A93A8AD794B /* Release */, 739 | ); 740 | defaultConfigurationIsVisible = 0; 741 | defaultConfigurationName = Release; 742 | }; 743 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 744 | isa = XCConfigurationList; 745 | buildConfigurations = ( 746 | 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */, 747 | 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */, 748 | ); 749 | defaultConfigurationIsVisible = 0; 750 | defaultConfigurationName = Release; 751 | }; 752 | 615AF5C2A3E152A524F98785C1265CA6 /* Build configuration list for PBXNativeTarget "ZPScrollerScaleView" */ = { 753 | isa = XCConfigurationList; 754 | buildConfigurations = ( 755 | D2C05EB794F895413E35F9B1020EF424 /* Debug */, 756 | 5C961A2C8BB77F64561AADB8609B9A97 /* Release */, 757 | ); 758 | defaultConfigurationIsVisible = 0; 759 | defaultConfigurationName = Release; 760 | }; 761 | DEC1F43A51EFC319DC253FF605070821 /* Build configuration list for PBXNativeTarget "Pods-ZPScrollerScaleView_Tests" */ = { 762 | isa = XCConfigurationList; 763 | buildConfigurations = ( 764 | B510503A6AAD7FF570637EE9EDA24920 /* Debug */, 765 | 244CE7B1720EAD68D5651B3E647D5517 /* Release */, 766 | ); 767 | defaultConfigurationIsVisible = 0; 768 | defaultConfigurationName = Release; 769 | }; 770 | /* End XCConfigurationList section */ 771 | }; 772 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 773 | } 774 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildLocationStyle 6 | UseTargetSettings 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/Pods-ZPScrollerScaleView_Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 50 | 51 | 53 | 54 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/Pods-ZPScrollerScaleView_Tests.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 50 | 51 | 53 | 54 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/ZPScrollerScaleView.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 45 | 46 | 52 | 53 | 55 | 56 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Pods-ZPScrollerScaleView_Example.xcscheme 8 | 9 | isShown 10 | 11 | 12 | Pods-ZPScrollerScaleView_Tests.xcscheme 13 | 14 | isShown 15 | 16 | 17 | ZPScrollerScaleView.xcscheme 18 | 19 | isShown 20 | 21 | 22 | 23 | SuppressBuildableAutocreation 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_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-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## ZPScrollerScaleView 5 | 6 | Copyright (c) 2019 张朋朋 <944160330@qq.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-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_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) 2019 张朋朋 <944160330@qq.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 | ZPScrollerScaleView 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-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ZPScrollerScaleView_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ZPScrollerScaleView_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_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[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --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 | if [ -r "$source" ]; then 88 | # Copy the dSYM into a the targets temp dir. 89 | 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}\"" 90 | 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 | 92 | local basename 93 | basename="$(basename -s .framework.dSYM "$source")" 94 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 95 | 96 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 97 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 98 | strip_invalid_archs "$binary" 99 | fi 100 | 101 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 102 | # Move the stripped file into its final destination. 103 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 104 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 105 | else 106 | # 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. 107 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 108 | fi 109 | fi 110 | } 111 | 112 | # Copies the bcsymbolmap files of a vendored framework 113 | install_bcsymbolmap() { 114 | local bcsymbolmap_path="$1" 115 | local destination="${BUILT_PRODUCTS_DIR}" 116 | 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}"" 117 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 118 | } 119 | 120 | # Signs a framework with the provided identity 121 | code_sign_if_enabled() { 122 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 123 | # Use the current code_sign_identity 124 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 125 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 126 | 127 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 128 | code_sign_cmd="$code_sign_cmd &" 129 | fi 130 | echo "$code_sign_cmd" 131 | eval "$code_sign_cmd" 132 | fi 133 | } 134 | 135 | # Strip invalid architectures 136 | strip_invalid_archs() { 137 | binary="$1" 138 | # Get architectures for current target binary 139 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 140 | # Intersect them with the architectures we are building for 141 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 142 | # If there are no archs supported by this binary then warn the user 143 | if [[ -z "$intersected_archs" ]]; then 144 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 145 | STRIP_BINARY_RETVAL=0 146 | return 147 | fi 148 | stripped="" 149 | for arch in $binary_archs; do 150 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 151 | # Strip non-valid architectures in-place 152 | lipo -remove "$arch" -output "$binary" "$binary" 153 | stripped="$stripped $arch" 154 | fi 155 | done 156 | if [[ "$stripped" ]]; then 157 | echo "Stripped $binary of architectures:$stripped" 158 | fi 159 | STRIP_BINARY_RETVAL=1 160 | } 161 | 162 | 163 | if [[ "$CONFIGURATION" == "Debug" ]]; then 164 | install_framework "${BUILT_PRODUCTS_DIR}/ZPScrollerScaleView/ZPScrollerScaleView.framework" 165 | fi 166 | if [[ "$CONFIGURATION" == "Release" ]]; then 167 | install_framework "${BUILT_PRODUCTS_DIR}/ZPScrollerScaleView/ZPScrollerScaleView.framework" 168 | fi 169 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 170 | wait 171 | fi 172 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_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_ZPScrollerScaleView_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ZPScrollerScaleView_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ZPScrollerScaleView" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ZPScrollerScaleView/ZPScrollerScaleView.framework/Headers" 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_LDFLAGS = $(inherited) -framework "ZPScrollerScaleView" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ZPScrollerScaleView_Example { 2 | umbrella header "Pods-ZPScrollerScaleView_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ZPScrollerScaleView" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ZPScrollerScaleView/ZPScrollerScaleView.framework/Headers" 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_LDFLAGS = $(inherited) -framework "ZPScrollerScaleView" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_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-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_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-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_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-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ZPScrollerScaleView_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ZPScrollerScaleView_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_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_ZPScrollerScaleView_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ZPScrollerScaleView_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ZPScrollerScaleView" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ZPScrollerScaleView/ZPScrollerScaleView.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "ZPScrollerScaleView" 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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ZPScrollerScaleView_Tests { 2 | umbrella header "Pods-ZPScrollerScaleView_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ZPScrollerScaleView" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ZPScrollerScaleView/ZPScrollerScaleView.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "ZPScrollerScaleView" 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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZPScrollerScaleView/ZPScrollerScaleView-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/ZPScrollerScaleView/ZPScrollerScaleView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ZPScrollerScaleView : NSObject 3 | @end 4 | @implementation PodsDummy_ZPScrollerScaleView 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZPScrollerScaleView/ZPScrollerScaleView-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/ZPScrollerScaleView/ZPScrollerScaleView-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 | #import "ZPScrollerScaleView.h" 14 | 15 | FOUNDATION_EXPORT double ZPScrollerScaleViewVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char ZPScrollerScaleViewVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZPScrollerScaleView/ZPScrollerScaleView.modulemap: -------------------------------------------------------------------------------- 1 | framework module ZPScrollerScaleView { 2 | umbrella header "ZPScrollerScaleView-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZPScrollerScaleView/ZPScrollerScaleView.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ZPScrollerScaleView 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | -------------------------------------------------------------------------------- /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 | // ZPScrollerScaleViewTests.m 3 | // ZPScrollerScaleViewTests 4 | // 5 | // Created by 张朋朋 on 08/02/2019. 6 | // Copyright (c) 2019 张朋朋. 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 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 11 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 12 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 13 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 14 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 15 | 6003F59E195388D20070C39A /* zppAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* zppAppDelegate.m */; }; 16 | 6003F5A7195388D20070C39A /* zppViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* zppViewController.m */; }; 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 | 84B8F61124752E880089CA36 /* zppPageEnableController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B8F61024752E880089CA36 /* zppPageEnableController.m */; }; 25 | 84B8F61424752E9E0089CA36 /* zppNoPageEnableController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B8F61324752E9E0089CA36 /* zppNoPageEnableController.m */; }; 26 | 84FD9284A67A0C70E7A586CC /* Pods_ZPScrollerScaleView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EF68F504780A52E3D380F109 /* Pods_ZPScrollerScaleView_Tests.framework */; }; 27 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; }; 28 | A118B0A79C58320641AD5D5D /* Pods_ZPScrollerScaleView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 599C0410D440BE1C15BBF6AA /* Pods_ZPScrollerScaleView_Example.framework */; }; 29 | /* End PBXBuildFile section */ 30 | 31 | /* Begin PBXContainerItemProxy section */ 32 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = 6003F582195388D10070C39A /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = 6003F589195388D20070C39A; 37 | remoteInfo = ZPScrollerScaleView; 38 | }; 39 | /* End PBXContainerItemProxy section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | 18C8B176A5EB6DA3E459D34B /* ZPScrollerScaleView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = ZPScrollerScaleView.podspec; path = ../ZPScrollerScaleView.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 43 | 599C0410D440BE1C15BBF6AA /* Pods_ZPScrollerScaleView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ZPScrollerScaleView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | 6003F58A195388D20070C39A /* ZPScrollerScaleView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ZPScrollerScaleView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 46 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 47 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 48 | 6003F595195388D20070C39A /* ZPScrollerScaleView-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ZPScrollerScaleView-Info.plist"; sourceTree = ""; }; 49 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 50 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 51 | 6003F59B195388D20070C39A /* ZPScrollerScaleView-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ZPScrollerScaleView-Prefix.pch"; sourceTree = ""; }; 52 | 6003F59C195388D20070C39A /* zppAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = zppAppDelegate.h; sourceTree = ""; }; 53 | 6003F59D195388D20070C39A /* zppAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = zppAppDelegate.m; sourceTree = ""; }; 54 | 6003F5A5195388D20070C39A /* zppViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = zppViewController.h; sourceTree = ""; }; 55 | 6003F5A6195388D20070C39A /* zppViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = zppViewController.m; sourceTree = ""; }; 56 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 57 | 6003F5AE195388D20070C39A /* ZPScrollerScaleView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ZPScrollerScaleView_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 58 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 59 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 60 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 61 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 62 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 63 | 707BF0684569AC3F98E09D67 /* Pods-ZPScrollerScaleView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ZPScrollerScaleView_Tests.release.xcconfig"; path = "Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_Tests.release.xcconfig"; sourceTree = ""; }; 64 | 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 65 | 739EFE1AE713059A78F011E7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 66 | 84B8F60F24752E880089CA36 /* zppPageEnableController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = zppPageEnableController.h; sourceTree = ""; }; 67 | 84B8F61024752E880089CA36 /* zppPageEnableController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = zppPageEnableController.m; sourceTree = ""; }; 68 | 84B8F61224752E9E0089CA36 /* zppNoPageEnableController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = zppNoPageEnableController.h; sourceTree = ""; }; 69 | 84B8F61324752E9E0089CA36 /* zppNoPageEnableController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = zppNoPageEnableController.m; sourceTree = ""; }; 70 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 71 | 9B033A283F46AC1601F61FE8 /* Pods-ZPScrollerScaleView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ZPScrollerScaleView_Example.debug.xcconfig"; path = "Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example.debug.xcconfig"; sourceTree = ""; }; 72 | A3957E18D5F7F1AC4EB14DFB /* Pods-ZPScrollerScaleView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ZPScrollerScaleView_Tests.debug.xcconfig"; path = "Target Support Files/Pods-ZPScrollerScaleView_Tests/Pods-ZPScrollerScaleView_Tests.debug.xcconfig"; sourceTree = ""; }; 73 | A6B728FF7E7D4C1E96F345BD /* Pods-ZPScrollerScaleView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ZPScrollerScaleView_Example.release.xcconfig"; path = "Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example.release.xcconfig"; sourceTree = ""; }; 74 | EEE9696A8D607FAB9D768F8F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 75 | EF68F504780A52E3D380F109 /* Pods_ZPScrollerScaleView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ZPScrollerScaleView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 76 | /* End PBXFileReference section */ 77 | 78 | /* Begin PBXFrameworksBuildPhase section */ 79 | 6003F587195388D20070C39A /* Frameworks */ = { 80 | isa = PBXFrameworksBuildPhase; 81 | buildActionMask = 2147483647; 82 | files = ( 83 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 84 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 85 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 86 | A118B0A79C58320641AD5D5D /* Pods_ZPScrollerScaleView_Example.framework in Frameworks */, 87 | ); 88 | runOnlyForDeploymentPostprocessing = 0; 89 | }; 90 | 6003F5AB195388D20070C39A /* Frameworks */ = { 91 | isa = PBXFrameworksBuildPhase; 92 | buildActionMask = 2147483647; 93 | files = ( 94 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 95 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 96 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 97 | 84FD9284A67A0C70E7A586CC /* Pods_ZPScrollerScaleView_Tests.framework in Frameworks */, 98 | ); 99 | runOnlyForDeploymentPostprocessing = 0; 100 | }; 101 | /* End PBXFrameworksBuildPhase section */ 102 | 103 | /* Begin PBXGroup section */ 104 | 5A00430DE1024AB7655050B4 /* Pods */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 9B033A283F46AC1601F61FE8 /* Pods-ZPScrollerScaleView_Example.debug.xcconfig */, 108 | A6B728FF7E7D4C1E96F345BD /* Pods-ZPScrollerScaleView_Example.release.xcconfig */, 109 | A3957E18D5F7F1AC4EB14DFB /* Pods-ZPScrollerScaleView_Tests.debug.xcconfig */, 110 | 707BF0684569AC3F98E09D67 /* Pods-ZPScrollerScaleView_Tests.release.xcconfig */, 111 | ); 112 | path = Pods; 113 | sourceTree = ""; 114 | }; 115 | 6003F581195388D10070C39A = { 116 | isa = PBXGroup; 117 | children = ( 118 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 119 | 6003F593195388D20070C39A /* Example for ZPScrollerScaleView */, 120 | 6003F5B5195388D20070C39A /* Tests */, 121 | 6003F58C195388D20070C39A /* Frameworks */, 122 | 6003F58B195388D20070C39A /* Products */, 123 | 5A00430DE1024AB7655050B4 /* Pods */, 124 | ); 125 | sourceTree = ""; 126 | }; 127 | 6003F58B195388D20070C39A /* Products */ = { 128 | isa = PBXGroup; 129 | children = ( 130 | 6003F58A195388D20070C39A /* ZPScrollerScaleView_Example.app */, 131 | 6003F5AE195388D20070C39A /* ZPScrollerScaleView_Tests.xctest */, 132 | ); 133 | name = Products; 134 | sourceTree = ""; 135 | }; 136 | 6003F58C195388D20070C39A /* Frameworks */ = { 137 | isa = PBXGroup; 138 | children = ( 139 | 6003F58D195388D20070C39A /* Foundation.framework */, 140 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 141 | 6003F591195388D20070C39A /* UIKit.framework */, 142 | 6003F5AF195388D20070C39A /* XCTest.framework */, 143 | 599C0410D440BE1C15BBF6AA /* Pods_ZPScrollerScaleView_Example.framework */, 144 | EF68F504780A52E3D380F109 /* Pods_ZPScrollerScaleView_Tests.framework */, 145 | ); 146 | name = Frameworks; 147 | sourceTree = ""; 148 | }; 149 | 6003F593195388D20070C39A /* Example for ZPScrollerScaleView */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | 6003F59C195388D20070C39A /* zppAppDelegate.h */, 153 | 6003F59D195388D20070C39A /* zppAppDelegate.m */, 154 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, 155 | 6003F5A5195388D20070C39A /* zppViewController.h */, 156 | 6003F5A6195388D20070C39A /* zppViewController.m */, 157 | 84B8F60F24752E880089CA36 /* zppPageEnableController.h */, 158 | 84B8F61024752E880089CA36 /* zppPageEnableController.m */, 159 | 84B8F61224752E9E0089CA36 /* zppNoPageEnableController.h */, 160 | 84B8F61324752E9E0089CA36 /* zppNoPageEnableController.m */, 161 | 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */, 162 | 6003F5A8195388D20070C39A /* Images.xcassets */, 163 | 6003F594195388D20070C39A /* Supporting Files */, 164 | ); 165 | name = "Example for ZPScrollerScaleView"; 166 | path = ZPScrollerScaleView; 167 | sourceTree = ""; 168 | }; 169 | 6003F594195388D20070C39A /* Supporting Files */ = { 170 | isa = PBXGroup; 171 | children = ( 172 | 6003F595195388D20070C39A /* ZPScrollerScaleView-Info.plist */, 173 | 6003F596195388D20070C39A /* InfoPlist.strings */, 174 | 6003F599195388D20070C39A /* main.m */, 175 | 6003F59B195388D20070C39A /* ZPScrollerScaleView-Prefix.pch */, 176 | ); 177 | name = "Supporting Files"; 178 | sourceTree = ""; 179 | }; 180 | 6003F5B5195388D20070C39A /* Tests */ = { 181 | isa = PBXGroup; 182 | children = ( 183 | 6003F5BB195388D20070C39A /* Tests.m */, 184 | 6003F5B6195388D20070C39A /* Supporting Files */, 185 | ); 186 | path = Tests; 187 | sourceTree = ""; 188 | }; 189 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 190 | isa = PBXGroup; 191 | children = ( 192 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 193 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 194 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 195 | ); 196 | name = "Supporting Files"; 197 | sourceTree = ""; 198 | }; 199 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 200 | isa = PBXGroup; 201 | children = ( 202 | 18C8B176A5EB6DA3E459D34B /* ZPScrollerScaleView.podspec */, 203 | EEE9696A8D607FAB9D768F8F /* README.md */, 204 | 739EFE1AE713059A78F011E7 /* LICENSE */, 205 | ); 206 | name = "Podspec Metadata"; 207 | sourceTree = ""; 208 | }; 209 | /* End PBXGroup section */ 210 | 211 | /* Begin PBXNativeTarget section */ 212 | 6003F589195388D20070C39A /* ZPScrollerScaleView_Example */ = { 213 | isa = PBXNativeTarget; 214 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "ZPScrollerScaleView_Example" */; 215 | buildPhases = ( 216 | 63BE29C377AB08BDB5C35638 /* [CP] Check Pods Manifest.lock */, 217 | 6003F586195388D20070C39A /* Sources */, 218 | 6003F587195388D20070C39A /* Frameworks */, 219 | 6003F588195388D20070C39A /* Resources */, 220 | A680FA679719C8CA0C462FFE /* [CP] Embed Pods Frameworks */, 221 | ); 222 | buildRules = ( 223 | ); 224 | dependencies = ( 225 | ); 226 | name = ZPScrollerScaleView_Example; 227 | productName = ZPScrollerScaleView; 228 | productReference = 6003F58A195388D20070C39A /* ZPScrollerScaleView_Example.app */; 229 | productType = "com.apple.product-type.application"; 230 | }; 231 | 6003F5AD195388D20070C39A /* ZPScrollerScaleView_Tests */ = { 232 | isa = PBXNativeTarget; 233 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "ZPScrollerScaleView_Tests" */; 234 | buildPhases = ( 235 | B4EA6EA06CCE9CBA17E5B882 /* [CP] Check Pods Manifest.lock */, 236 | 6003F5AA195388D20070C39A /* Sources */, 237 | 6003F5AB195388D20070C39A /* Frameworks */, 238 | 6003F5AC195388D20070C39A /* Resources */, 239 | ); 240 | buildRules = ( 241 | ); 242 | dependencies = ( 243 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 244 | ); 245 | name = ZPScrollerScaleView_Tests; 246 | productName = ZPScrollerScaleViewTests; 247 | productReference = 6003F5AE195388D20070C39A /* ZPScrollerScaleView_Tests.xctest */; 248 | productType = "com.apple.product-type.bundle.unit-test"; 249 | }; 250 | /* End PBXNativeTarget section */ 251 | 252 | /* Begin PBXProject section */ 253 | 6003F582195388D10070C39A /* Project object */ = { 254 | isa = PBXProject; 255 | attributes = { 256 | CLASSPREFIX = zpp; 257 | LastUpgradeCheck = 0720; 258 | ORGANIZATIONNAME = "张朋朋"; 259 | TargetAttributes = { 260 | 6003F589195388D20070C39A = { 261 | DevelopmentTeam = UNRQF8Z7WA; 262 | }; 263 | 6003F5AD195388D20070C39A = { 264 | TestTargetID = 6003F589195388D20070C39A; 265 | }; 266 | }; 267 | }; 268 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "ZPScrollerScaleView" */; 269 | compatibilityVersion = "Xcode 3.2"; 270 | developmentRegion = English; 271 | hasScannedForEncodings = 0; 272 | knownRegions = ( 273 | English, 274 | en, 275 | Base, 276 | ); 277 | mainGroup = 6003F581195388D10070C39A; 278 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 279 | projectDirPath = ""; 280 | projectRoot = ""; 281 | targets = ( 282 | 6003F589195388D20070C39A /* ZPScrollerScaleView_Example */, 283 | 6003F5AD195388D20070C39A /* ZPScrollerScaleView_Tests */, 284 | ); 285 | }; 286 | /* End PBXProject section */ 287 | 288 | /* Begin PBXResourcesBuildPhase section */ 289 | 6003F588195388D20070C39A /* Resources */ = { 290 | isa = PBXResourcesBuildPhase; 291 | buildActionMask = 2147483647; 292 | files = ( 293 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */, 294 | 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */, 295 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 296 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 297 | ); 298 | runOnlyForDeploymentPostprocessing = 0; 299 | }; 300 | 6003F5AC195388D20070C39A /* Resources */ = { 301 | isa = PBXResourcesBuildPhase; 302 | buildActionMask = 2147483647; 303 | files = ( 304 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 305 | ); 306 | runOnlyForDeploymentPostprocessing = 0; 307 | }; 308 | /* End PBXResourcesBuildPhase section */ 309 | 310 | /* Begin PBXShellScriptBuildPhase section */ 311 | 63BE29C377AB08BDB5C35638 /* [CP] Check Pods Manifest.lock */ = { 312 | isa = PBXShellScriptBuildPhase; 313 | buildActionMask = 2147483647; 314 | files = ( 315 | ); 316 | inputFileListPaths = ( 317 | ); 318 | inputPaths = ( 319 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 320 | "${PODS_ROOT}/Manifest.lock", 321 | ); 322 | name = "[CP] Check Pods Manifest.lock"; 323 | outputFileListPaths = ( 324 | ); 325 | outputPaths = ( 326 | "$(DERIVED_FILE_DIR)/Pods-ZPScrollerScaleView_Example-checkManifestLockResult.txt", 327 | ); 328 | runOnlyForDeploymentPostprocessing = 0; 329 | shellPath = /bin/sh; 330 | 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"; 331 | showEnvVarsInLog = 0; 332 | }; 333 | A680FA679719C8CA0C462FFE /* [CP] Embed Pods Frameworks */ = { 334 | isa = PBXShellScriptBuildPhase; 335 | buildActionMask = 2147483647; 336 | files = ( 337 | ); 338 | inputPaths = ( 339 | "${PODS_ROOT}/Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example-frameworks.sh", 340 | "${BUILT_PRODUCTS_DIR}/ZPScrollerScaleView/ZPScrollerScaleView.framework", 341 | ); 342 | name = "[CP] Embed Pods Frameworks"; 343 | outputPaths = ( 344 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ZPScrollerScaleView.framework", 345 | ); 346 | runOnlyForDeploymentPostprocessing = 0; 347 | shellPath = /bin/sh; 348 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ZPScrollerScaleView_Example/Pods-ZPScrollerScaleView_Example-frameworks.sh\"\n"; 349 | showEnvVarsInLog = 0; 350 | }; 351 | B4EA6EA06CCE9CBA17E5B882 /* [CP] Check Pods Manifest.lock */ = { 352 | isa = PBXShellScriptBuildPhase; 353 | buildActionMask = 2147483647; 354 | files = ( 355 | ); 356 | inputFileListPaths = ( 357 | ); 358 | inputPaths = ( 359 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 360 | "${PODS_ROOT}/Manifest.lock", 361 | ); 362 | name = "[CP] Check Pods Manifest.lock"; 363 | outputFileListPaths = ( 364 | ); 365 | outputPaths = ( 366 | "$(DERIVED_FILE_DIR)/Pods-ZPScrollerScaleView_Tests-checkManifestLockResult.txt", 367 | ); 368 | runOnlyForDeploymentPostprocessing = 0; 369 | shellPath = /bin/sh; 370 | 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"; 371 | showEnvVarsInLog = 0; 372 | }; 373 | /* End PBXShellScriptBuildPhase section */ 374 | 375 | /* Begin PBXSourcesBuildPhase section */ 376 | 6003F586195388D20070C39A /* Sources */ = { 377 | isa = PBXSourcesBuildPhase; 378 | buildActionMask = 2147483647; 379 | files = ( 380 | 6003F59E195388D20070C39A /* zppAppDelegate.m in Sources */, 381 | 84B8F61424752E9E0089CA36 /* zppNoPageEnableController.m in Sources */, 382 | 6003F5A7195388D20070C39A /* zppViewController.m in Sources */, 383 | 84B8F61124752E880089CA36 /* zppPageEnableController.m in Sources */, 384 | 6003F59A195388D20070C39A /* main.m in Sources */, 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | 6003F5AA195388D20070C39A /* Sources */ = { 389 | isa = PBXSourcesBuildPhase; 390 | buildActionMask = 2147483647; 391 | files = ( 392 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 393 | ); 394 | runOnlyForDeploymentPostprocessing = 0; 395 | }; 396 | /* End PBXSourcesBuildPhase section */ 397 | 398 | /* Begin PBXTargetDependency section */ 399 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 400 | isa = PBXTargetDependency; 401 | target = 6003F589195388D20070C39A /* ZPScrollerScaleView_Example */; 402 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 403 | }; 404 | /* End PBXTargetDependency section */ 405 | 406 | /* Begin PBXVariantGroup section */ 407 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 408 | isa = PBXVariantGroup; 409 | children = ( 410 | 6003F597195388D20070C39A /* en */, 411 | ); 412 | name = InfoPlist.strings; 413 | sourceTree = ""; 414 | }; 415 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 416 | isa = PBXVariantGroup; 417 | children = ( 418 | 6003F5B9195388D20070C39A /* en */, 419 | ); 420 | name = InfoPlist.strings; 421 | sourceTree = ""; 422 | }; 423 | 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = { 424 | isa = PBXVariantGroup; 425 | children = ( 426 | 71719F9E1E33DC2100824A3D /* Base */, 427 | ); 428 | name = LaunchScreen.storyboard; 429 | sourceTree = ""; 430 | }; 431 | /* End PBXVariantGroup section */ 432 | 433 | /* Begin XCBuildConfiguration section */ 434 | 6003F5BD195388D20070C39A /* Debug */ = { 435 | isa = XCBuildConfiguration; 436 | buildSettings = { 437 | ALWAYS_SEARCH_USER_PATHS = NO; 438 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 439 | CLANG_CXX_LIBRARY = "libc++"; 440 | CLANG_ENABLE_MODULES = YES; 441 | CLANG_ENABLE_OBJC_ARC = YES; 442 | CLANG_WARN_BOOL_CONVERSION = YES; 443 | CLANG_WARN_CONSTANT_CONVERSION = YES; 444 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 445 | CLANG_WARN_EMPTY_BODY = YES; 446 | CLANG_WARN_ENUM_CONVERSION = YES; 447 | CLANG_WARN_INT_CONVERSION = YES; 448 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 449 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 450 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 451 | COPY_PHASE_STRIP = NO; 452 | ENABLE_TESTABILITY = YES; 453 | GCC_C_LANGUAGE_STANDARD = gnu99; 454 | GCC_DYNAMIC_NO_PIC = NO; 455 | GCC_OPTIMIZATION_LEVEL = 0; 456 | GCC_PREPROCESSOR_DEFINITIONS = ( 457 | "DEBUG=1", 458 | "$(inherited)", 459 | ); 460 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 461 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 462 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 463 | GCC_WARN_UNDECLARED_SELECTOR = YES; 464 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 465 | GCC_WARN_UNUSED_FUNCTION = YES; 466 | GCC_WARN_UNUSED_VARIABLE = YES; 467 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 468 | ONLY_ACTIVE_ARCH = YES; 469 | SDKROOT = iphoneos; 470 | TARGETED_DEVICE_FAMILY = "1,2"; 471 | }; 472 | name = Debug; 473 | }; 474 | 6003F5BE195388D20070C39A /* Release */ = { 475 | isa = XCBuildConfiguration; 476 | buildSettings = { 477 | ALWAYS_SEARCH_USER_PATHS = NO; 478 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 479 | CLANG_CXX_LIBRARY = "libc++"; 480 | CLANG_ENABLE_MODULES = YES; 481 | CLANG_ENABLE_OBJC_ARC = YES; 482 | CLANG_WARN_BOOL_CONVERSION = YES; 483 | CLANG_WARN_CONSTANT_CONVERSION = YES; 484 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 485 | CLANG_WARN_EMPTY_BODY = YES; 486 | CLANG_WARN_ENUM_CONVERSION = YES; 487 | CLANG_WARN_INT_CONVERSION = YES; 488 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 489 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 490 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 491 | COPY_PHASE_STRIP = YES; 492 | ENABLE_NS_ASSERTIONS = NO; 493 | GCC_C_LANGUAGE_STANDARD = gnu99; 494 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 495 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 496 | GCC_WARN_UNDECLARED_SELECTOR = YES; 497 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 498 | GCC_WARN_UNUSED_FUNCTION = YES; 499 | GCC_WARN_UNUSED_VARIABLE = YES; 500 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 501 | SDKROOT = iphoneos; 502 | TARGETED_DEVICE_FAMILY = "1,2"; 503 | VALIDATE_PRODUCT = YES; 504 | }; 505 | name = Release; 506 | }; 507 | 6003F5C0195388D20070C39A /* Debug */ = { 508 | isa = XCBuildConfiguration; 509 | baseConfigurationReference = 9B033A283F46AC1601F61FE8 /* Pods-ZPScrollerScaleView_Example.debug.xcconfig */; 510 | buildSettings = { 511 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 512 | DEVELOPMENT_TEAM = UNRQF8Z7WA; 513 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 514 | GCC_PREFIX_HEADER = "ZPScrollerScaleView/ZPScrollerScaleView-Prefix.pch"; 515 | INFOPLIST_FILE = "ZPScrollerScaleView/ZPScrollerScaleView-Info.plist"; 516 | MODULE_NAME = ExampleApp; 517 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 518 | PRODUCT_NAME = "$(TARGET_NAME)"; 519 | SWIFT_VERSION = 4.0; 520 | WRAPPER_EXTENSION = app; 521 | }; 522 | name = Debug; 523 | }; 524 | 6003F5C1195388D20070C39A /* Release */ = { 525 | isa = XCBuildConfiguration; 526 | baseConfigurationReference = A6B728FF7E7D4C1E96F345BD /* Pods-ZPScrollerScaleView_Example.release.xcconfig */; 527 | buildSettings = { 528 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 529 | DEVELOPMENT_TEAM = UNRQF8Z7WA; 530 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 531 | GCC_PREFIX_HEADER = "ZPScrollerScaleView/ZPScrollerScaleView-Prefix.pch"; 532 | INFOPLIST_FILE = "ZPScrollerScaleView/ZPScrollerScaleView-Info.plist"; 533 | MODULE_NAME = ExampleApp; 534 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 535 | PRODUCT_NAME = "$(TARGET_NAME)"; 536 | SWIFT_VERSION = 4.0; 537 | WRAPPER_EXTENSION = app; 538 | }; 539 | name = Release; 540 | }; 541 | 6003F5C3195388D20070C39A /* Debug */ = { 542 | isa = XCBuildConfiguration; 543 | baseConfigurationReference = A3957E18D5F7F1AC4EB14DFB /* Pods-ZPScrollerScaleView_Tests.debug.xcconfig */; 544 | buildSettings = { 545 | BUNDLE_LOADER = "$(TEST_HOST)"; 546 | FRAMEWORK_SEARCH_PATHS = ( 547 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 548 | "$(inherited)", 549 | "$(DEVELOPER_FRAMEWORKS_DIR)", 550 | ); 551 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 552 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 553 | GCC_PREPROCESSOR_DEFINITIONS = ( 554 | "DEBUG=1", 555 | "$(inherited)", 556 | ); 557 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 558 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 559 | PRODUCT_NAME = "$(TARGET_NAME)"; 560 | SWIFT_VERSION = 4.0; 561 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ZPScrollerScaleView_Example.app/ZPScrollerScaleView_Example"; 562 | WRAPPER_EXTENSION = xctest; 563 | }; 564 | name = Debug; 565 | }; 566 | 6003F5C4195388D20070C39A /* Release */ = { 567 | isa = XCBuildConfiguration; 568 | baseConfigurationReference = 707BF0684569AC3F98E09D67 /* Pods-ZPScrollerScaleView_Tests.release.xcconfig */; 569 | buildSettings = { 570 | BUNDLE_LOADER = "$(TEST_HOST)"; 571 | FRAMEWORK_SEARCH_PATHS = ( 572 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 573 | "$(inherited)", 574 | "$(DEVELOPER_FRAMEWORKS_DIR)", 575 | ); 576 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 577 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 578 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 579 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 580 | PRODUCT_NAME = "$(TARGET_NAME)"; 581 | SWIFT_VERSION = 4.0; 582 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ZPScrollerScaleView_Example.app/ZPScrollerScaleView_Example"; 583 | WRAPPER_EXTENSION = xctest; 584 | }; 585 | name = Release; 586 | }; 587 | /* End XCBuildConfiguration section */ 588 | 589 | /* Begin XCConfigurationList section */ 590 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "ZPScrollerScaleView" */ = { 591 | isa = XCConfigurationList; 592 | buildConfigurations = ( 593 | 6003F5BD195388D20070C39A /* Debug */, 594 | 6003F5BE195388D20070C39A /* Release */, 595 | ); 596 | defaultConfigurationIsVisible = 0; 597 | defaultConfigurationName = Release; 598 | }; 599 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "ZPScrollerScaleView_Example" */ = { 600 | isa = XCConfigurationList; 601 | buildConfigurations = ( 602 | 6003F5C0195388D20070C39A /* Debug */, 603 | 6003F5C1195388D20070C39A /* Release */, 604 | ); 605 | defaultConfigurationIsVisible = 0; 606 | defaultConfigurationName = Release; 607 | }; 608 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "ZPScrollerScaleView_Tests" */ = { 609 | isa = XCConfigurationList; 610 | buildConfigurations = ( 611 | 6003F5C3195388D20070C39A /* Debug */, 612 | 6003F5C4195388D20070C39A /* Release */, 613 | ); 614 | defaultConfigurationIsVisible = 0; 615 | defaultConfigurationName = Release; 616 | }; 617 | /* End XCConfigurationList section */ 618 | }; 619 | rootObject = 6003F582195388D10070C39A /* Project object */; 620 | } 621 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView.xcodeproj/xcshareddata/xcschemes/ZPScrollerScaleView-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/ZPScrollerScaleView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZPP506/ZPScrollerScaleView/63d9a7539347f8b9ab0a0b3e4b1fa20219a06b09/Example/ZPScrollerScaleView.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/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 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/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 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/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 | } 99 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/ZPScrollerScaleView-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 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/ZPScrollerScaleView-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | @import UIKit; 15 | @import Foundation; 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ZPScrollerScaleView 4 | // 5 | // Created by 张朋朋 on 08/02/2019. 6 | // Copyright (c) 2019 张朋朋. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | #import "zppAppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) 13 | { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([zppAppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/zppAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // zppAppDelegate.h 3 | // ZPScrollerScaleView 4 | // 5 | // Created by 张朋朋 on 08/02/2019. 6 | // Copyright (c) 2019 张朋朋. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface zppAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/zppAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // zppAppDelegate.m 3 | // ZPScrollerScaleView 4 | // 5 | // Created by 张朋朋 on 08/02/2019. 6 | // Copyright (c) 2019 张朋朋. All rights reserved. 7 | // 8 | 9 | #import "zppAppDelegate.h" 10 | 11 | @implementation zppAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 22 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/zppNoPageEnableController.h: -------------------------------------------------------------------------------- 1 | // 2 | // zppNoPageEnableViewController.h 3 | // ZPScrollerScaleView_Example 4 | // 5 | // Created by admin on 2020/5/20. 6 | // Copyright © 2020 张朋朋. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface zppNoPageEnableController : UIViewController 14 | 15 | @end 16 | 17 | NS_ASSUME_NONNULL_END 18 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/zppNoPageEnableController.m: -------------------------------------------------------------------------------- 1 | // 2 | // zppNoPageEnableController.m 3 | // ZPScrollerScaleView 4 | // 5 | // Created by 张朋朋 on 08/02/2019. 6 | // Copyright (c) 2019 张朋朋. All rights reserved. 7 | // 8 | 9 | #import "zppNoPageEnableController.h" 10 | #import 11 | 12 | // 颜色 13 | #define RGBAColor(r, g, b, a) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:(a)] 14 | #define RGBColor(r, g, b) RGBAColor((r), (g), (b), 1.0) 15 | #define RandomColor RGBColor(arc4random_uniform(255), arc4random_uniform(255), arc4random_uniform(255)) 16 | 17 | @interface zppNoPageEnableController () 18 | /**<#name#>*/ 19 | @property (nonatomic, strong) ZPScrollerScaleView *scrollerView; 20 | @end 21 | 22 | @implementation zppNoPageEnableController 23 | 24 | - (ZPScrollerScaleView *)scrollerView 25 | { 26 | if (_scrollerView == nil) { 27 | 28 | /**初始化配置项*/ 29 | ZPScrollerScaleViewConfig * config = [[ZPScrollerScaleViewConfig alloc]init]; 30 | config.scaleMin = 0.9; 31 | config.scaleMax = 1; 32 | config.pageSize = CGSizeMake([UIScreen mainScreen].bounds.size.width - 100, 400); 33 | config.ItemMaingin = 5; 34 | config.pagingEnabled = NO; 35 | 36 | /**初始化滚动缩放视图*/ 37 | ZPScrollerScaleView * tempView = [[ZPScrollerScaleView alloc] initWithConfig:config]; 38 | tempView.backgroundColor = [UIColor grayColor]; 39 | 40 | _scrollerView = tempView; 41 | } 42 | return _scrollerView; 43 | } 44 | - (void)viewDidLoad { 45 | [super viewDidLoad]; 46 | // Do any additional setup after loading the view. 47 | 48 | 49 | //1:创建子视图 并添加到数组中 50 | NSMutableArray * items = @[].mutableCopy; 51 | for(int i =0; i < 10; i++){ 52 | UIView * view = [UIView new]; 53 | view.backgroundColor =RandomColor; 54 | [items addObject:view]; 55 | } 56 | 57 | 58 | [self.view addSubview:self.scrollerView]; 59 | self.scrollerView.frame = CGRectMake(0, 100, self.view.bounds.size.width, 400); 60 | 61 | //至少要是等于 2-8 62 | self.scrollerView.defalutIndex = 9; 63 | 64 | //2:将子视图数组传递 ZPScrollerScaleView 65 | self.scrollerView.items = items; 66 | } 67 | 68 | 69 | @end 70 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/zppPageEnableController.h: -------------------------------------------------------------------------------- 1 | // 2 | // zppPageEnableController.h 3 | // ZPScrollerScaleView_Example 4 | // 5 | // Created by admin on 2020/5/20. 6 | // Copyright © 2020 张朋朋. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface zppPageEnableController : UIViewController 14 | 15 | @end 16 | 17 | NS_ASSUME_NONNULL_END 18 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/zppPageEnableController.m: -------------------------------------------------------------------------------- 1 | // 2 | // zppPageEnableController.m 3 | // ZPScrollerScaleView 4 | // 5 | // Created by 张朋朋 on 08/02/2019. 6 | // Copyright (c) 2019 张朋朋. All rights reserved. 7 | // 8 | 9 | #import "zppPageEnableController.h" 10 | #import 11 | 12 | // 颜色 13 | #define RGBAColor(r, g, b, a) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:(a)] 14 | #define RGBColor(r, g, b) RGBAColor((r), (g), (b), 1.0) 15 | #define RandomColor RGBColor(arc4random_uniform(255), arc4random_uniform(255), arc4random_uniform(255)) 16 | 17 | @interface zppPageEnableController () 18 | /**<#name#>*/ 19 | @property (nonatomic, strong) ZPScrollerScaleView *scrollerView; 20 | @end 21 | 22 | @implementation zppPageEnableController 23 | 24 | - (ZPScrollerScaleView *)scrollerView 25 | { 26 | if (_scrollerView == nil) { 27 | 28 | /**初始化配置项*/ 29 | ZPScrollerScaleViewConfig * config = [[ZPScrollerScaleViewConfig alloc]init]; 30 | config.scaleMin = 0.9; 31 | config.scaleMax = 1; 32 | config.pageSize = CGSizeMake([UIScreen mainScreen].bounds.size.width - 100, 400); 33 | config.ItemMaingin = 5; 34 | config.pagingEnabled = YES; 35 | 36 | /**初始化滚动缩放视图*/ 37 | ZPScrollerScaleView * tempView = [[ZPScrollerScaleView alloc] initWithConfig:config]; 38 | tempView.backgroundColor = [UIColor grayColor]; 39 | 40 | _scrollerView = tempView; 41 | } 42 | return _scrollerView; 43 | } 44 | - (void)viewDidLoad { 45 | [super viewDidLoad]; 46 | // Do any additional setup after loading the view. 47 | 48 | 49 | //1:创建子视图 并添加到数组中 50 | NSMutableArray * items = @[].mutableCopy; 51 | for(int i =0; i < 10; i++){ 52 | UIView * view = [UIView new]; 53 | view.backgroundColor =RandomColor; 54 | [items addObject:view]; 55 | } 56 | 57 | 58 | [self.view addSubview:self.scrollerView]; 59 | self.scrollerView.frame = CGRectMake(0, 100, self.view.bounds.size.width, 400); 60 | 61 | //至少要是等于 2-8 62 | self.scrollerView.defalutIndex = 9; 63 | 64 | //2:将子视图数组传递 ZPScrollerScaleView 65 | self.scrollerView.items = items; 66 | } 67 | 68 | 69 | @end 70 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/zppViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // zppViewController.h 3 | // ZPScrollerScaleView 4 | // 5 | // Created by 张朋朋 on 08/02/2019. 6 | // Copyright (c) 2019 张朋朋. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface zppViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/ZPScrollerScaleView/zppViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // zppViewController.m 3 | // ZPScrollerScaleView 4 | // 5 | // Created by 张朋朋 on 08/02/2019. 6 | // Copyright (c) 2019 张朋朋. All rights reserved. 7 | // 8 | 9 | #import "zppViewController.h" 10 | #import 11 | 12 | // 颜色 13 | #define RGBAColor(r, g, b, a) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:(a)] 14 | #define RGBColor(r, g, b) RGBAColor((r), (g), (b), 1.0) 15 | #define RandomColor RGBColor(arc4random_uniform(255), arc4random_uniform(255), arc4random_uniform(255)) 16 | 17 | @interface zppViewController () 18 | /**<#name#>*/ 19 | //@property (nonatomic, strong) ZPScrollerScaleView *scrollerView; 20 | @end 21 | 22 | @implementation zppViewController 23 | 24 | //- (ZPScrollerScaleView *)scrollerView 25 | //{ 26 | // if (_scrollerView == nil) { 27 | // 28 | // /**初始化配置项*/ 29 | // ZPScrollerScaleViewConfig * config = [[ZPScrollerScaleViewConfig alloc]init]; 30 | // config.scaleMin = 0.9; 31 | // config.scaleMax = 1; 32 | // config.pageSize = CGSizeMake([UIScreen mainScreen].bounds.size.width - 100, 400); 33 | // config.ItemMaingin = 5; 34 | // config.pagingEnabled = YES; 35 | // 36 | // /**初始化滚动缩放视图*/ 37 | // ZPScrollerScaleView * tempView = [[ZPScrollerScaleView alloc] initWithConfig:config]; 38 | // tempView.backgroundColor = [UIColor grayColor]; 39 | // 40 | // _scrollerView = tempView; 41 | // } 42 | // return _scrollerView; 43 | //} 44 | //- (void)viewDidLoad { 45 | // [super viewDidLoad]; 46 | // // Do any additional setup after loading the view. 47 | // 48 | // 49 | // //1:创建子视图 并添加到数组中 50 | // NSMutableArray * items = @[].mutableCopy; 51 | // for(int i =0; i < 10; i++){ 52 | // UIView * view = [UIView new]; 53 | // view.backgroundColor =RandomColor; 54 | // [items addObject:view]; 55 | // } 56 | // 57 | // 58 | // [self.view addSubview:self.scrollerView]; 59 | // self.scrollerView.frame = CGRectMake(0, 100, self.view.bounds.size.width, 400); 60 | // 61 | // //至少要是等于 2-8 62 | // self.scrollerView.defalutIndex = 9; 63 | // 64 | // //2:将子视图数组传递 ZPScrollerScaleView 65 | // self.scrollerView.items = items; 66 | //} 67 | 68 | 69 | @end 70 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 张朋朋 <944160330@qq.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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ZPScrollerScaleView 2 | 3 | [![CI Status](https://img.shields.io/travis/张朋朋/ZPScrollerScaleView.svg?style=flat)](https://travis-ci.org/张朋朋/ZPScrollerScaleView) 4 | [![Version](https://img.shields.io/cocoapods/v/ZPScrollerScaleView.svg?style=flat)](https://cocoapods.org/pods/ZPScrollerScaleView) 5 | [![License](https://img.shields.io/cocoapods/l/ZPScrollerScaleView.svg?style=flat)](https://cocoapods.org/pods/ZPScrollerScaleView) 6 | [![Platform](https://img.shields.io/cocoapods/p/ZPScrollerScaleView.svg?style=flat)](https://cocoapods.org/pods/ZPScrollerScaleView) 7 | 8 | ## Example 9 | 10 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 11 | 12 | ## How to use ZPScrollerScaleView 13 | ``` 14 | /**初始化配置项*/ 15 | ZPScrollerScaleViewConfig * config = [[ZPScrollerScaleViewConfig alloc]init]; 16 | config.scaleMin = 0.9; 17 | config.scaleMax = 1; 18 | config.pageSize = CGSizeMake([UIScreen mainScreen].bounds.size.width - 100, 400); 19 | config.ItemMaingin = 5; 20 | 21 | 22 | /**初始化滚动缩放视图*/ 23 | ZPScrollerScaleView * tempView = [[ZPScrollerScaleView alloc] initWithConfig:config]; 24 | 25 | /**设置默认展示*/ 26 | tempView.defalutIndex = 1; 27 | 28 | /**添加子视图view到items数组中用于展示*/ 29 | tempView.items =@[view1,view2,view3,....]; 30 | 31 | ``` 32 | 33 | ## 如何获取当前下标值 34 | 35 | ``` 36 | NSInteger currentIndex = tempView.currentIndex; 37 | 38 | ``` 39 | 40 | ## Installation 41 | 42 | ZPScrollerScaleView is available through [CocoaPods](https://cocoapods.org). To install 43 | it, simply add the following line to your Podfile: 44 | 45 | ```ruby 46 | pod 'ZPScrollerScaleView' 47 | ``` 48 | 49 | ## Author 50 | 51 | 张朋朋, 944160330@qq.com 52 | 53 | ## License 54 | 55 | ZPScrollerScaleView is available under the MIT license. See the LICENSE file for more info. 56 | 57 | 58 | -------------------------------------------------------------------------------- /ZPScrollerScaleView.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint ZPScrollerScaleView.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 https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'ZPScrollerScaleView' 11 | s.version = '1.0.3' 12 | s.summary = 'ZPScrollerScaleView: Loop scroll + scroll scale implementation' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | TODO: Loop scroll + scroll scale implementation. 22 | DESC 23 | 24 | s.homepage = 'https://github.com/ZPP506/ZPScrollerScaleView' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'ZPP506' => '944160330@qq.com' } 28 | s.source = { :git => 'https://github.com/ZPP506/ZPScrollerScaleView.git', :tag => s.version.to_s } 29 | # s.social_media_url = 'https://twitter.com/' 30 | 31 | s.ios.deployment_target = '8.0' 32 | 33 | s.source_files = 'ZPScrollerScaleView/Classes/**/*' 34 | 35 | # s.resource_bundles = { 36 | # 'ZPScrollerScaleView' => ['ZPScrollerScaleView/Assets/*.png'] 37 | # } 38 | 39 | # s.public_header_files = 'Pod/Classes/**/*.h' 40 | # s.frameworks = 'UIKit', 'MapKit' 41 | # s.dependency 'AFNetworking', '~> 2.3' 42 | end 43 | -------------------------------------------------------------------------------- /ZPScrollerScaleView/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZPP506/ZPScrollerScaleView/63d9a7539347f8b9ab0a0b3e4b1fa20219a06b09/ZPScrollerScaleView/Assets/.gitkeep -------------------------------------------------------------------------------- /ZPScrollerScaleView/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZPP506/ZPScrollerScaleView/63d9a7539347f8b9ab0a0b3e4b1fa20219a06b09/ZPScrollerScaleView/Classes/.gitkeep -------------------------------------------------------------------------------- /ZPScrollerScaleView/Classes/ZPScrollerScaleView.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZPScrollerScaleView.h 3 | // ChooseRoleScroller 4 | // 5 | // Created by admin on 2019/7/31. 6 | // Copyright © 2019 April. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface ZPScrollerScaleViewConfig : NSObject 14 | 15 | /**自定义pageSize*/ 16 | @property (nonatomic, assign) CGSize pageSize; 17 | 18 | /**子视图间距*/ 19 | @property (nonatomic, assign) CGFloat ItemMaingin; 20 | 21 | /**最小缩放比例*/ 22 | @property (nonatomic, assign) CGFloat scaleMin; 23 | 24 | /**最大缩放比建议为 1 这个值若非必要不要进行修改 影响视图展示导致失真*/ 25 | @property (nonatomic, assign) CGFloat scaleMax; 26 | 27 | /**是否分页*/ 28 | @property (nonatomic, assign) BOOL pagingEnabled; 29 | 30 | @end 31 | 32 | @interface ZPScrollerScaleView : UIView 33 | 34 | /**视图数组*/ 35 | @property (nonatomic, strong) NSArray * items; 36 | 37 | /**默认显示第几个*/ 38 | @property (nonatomic, assign) NSInteger defalutIndex; 39 | 40 | /**当前下标值*/ 41 | @property (nonatomic, assign, readonly) NSInteger currentIndex; 42 | 43 | /// 初始化方法 44 | /// @param config 配置参数 45 | - (instancetype)initWithConfig:(ZPScrollerScaleViewConfig *)config; 46 | 47 | 48 | 49 | @end 50 | 51 | NS_ASSUME_NONNULL_END 52 | -------------------------------------------------------------------------------- /ZPScrollerScaleView/Classes/ZPScrollerScaleView.m: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | // 5 | // ZPScrollerScaleView.m 6 | // ChooseRoleScroller 7 | // 8 | // Created by admin on 2019/7/31. 9 | // Copyright © 2019 April. All rights reserved. 10 | // 11 | 12 | #import "ZPScrollerScaleView.h" 13 | 14 | #define BaseTag 722 //基础Tag数值 15 | @implementation ZPScrollerScaleViewConfig 16 | @end 17 | @interface ZPScrollerScaleView () 18 | 19 | @property (nonatomic, strong) UIScrollView *contentView; 20 | 21 | /**当前偏移所在位置*/ 22 | @property (nonatomic, assign) NSInteger pageIndex; 23 | 24 | /**判断滑动方向*/ 25 | @property (nonatomic, assign) CGFloat lastContentOffset; 26 | 27 | /**记录当前滚动位置*/ 28 | @property (nonatomic, assign) CGFloat lastOffsetX; 29 | 30 | /**子项配置*/ 31 | @property (nonatomic, strong) ZPScrollerScaleViewConfig *config; 32 | 33 | @end 34 | 35 | @implementation ZPScrollerScaleView 36 | - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{ 37 | if([self pointInside:point withEvent:event]){ 38 | return _contentView; 39 | } 40 | return [super hitTest:point withEvent:event]; 41 | } 42 | - (instancetype)initWithConfig:(ZPScrollerScaleViewConfig *)config{ 43 | _config = config; 44 | self = [super init]; 45 | if (self) { 46 | self.clipsToBounds = YES; 47 | [self addSubview:self.contentView]; 48 | } 49 | return self; 50 | } 51 | -(CGFloat)pageMagin{ 52 | 53 | return ([UIScreen mainScreen].bounds.size.width - self.config.pageSize.width)/2; 54 | } 55 | - (UIScrollView *)contentView{ 56 | if(!_contentView){ 57 | CGSize pageSize = self.config.pageSize; 58 | _contentView = [[UIScrollView alloc]initWithFrame:CGRectMake(self.pageMagin,0, pageSize.width, pageSize.height)]; 59 | _contentView.delegate = self; 60 | _contentView.pagingEnabled = self.config.pagingEnabled; 61 | _contentView.backgroundColor = self.backgroundColor; 62 | _contentView.showsHorizontalScrollIndicator = NO; 63 | _contentView.clipsToBounds = NO; 64 | _contentView.contentSize = CGSizeMake(500 * pageSize.width, pageSize.height); 65 | 66 | } 67 | return _contentView; 68 | } 69 | #pragma mark - 无限滚动 以及 滚动缩放处理 70 | 71 | /** 72 | 当前展示的视图 73 | 74 | @return 当前展示的视图下标 75 | */ 76 | - (NSInteger)currentIndex{ 77 | 78 | NSInteger pageIndex = self.contentView.contentOffset.x/self.config.pageSize.width; 79 | return pageIndex % self.items.count; 80 | } 81 | 82 | 83 | - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{ 84 | 85 | _lastContentOffset = scrollView.contentOffset.x; 86 | 87 | } 88 | - (void)itemViewStartAnimationWithContentOffset:(CGFloat)contentOffsetX{ 89 | 90 | CGFloat pageSizeW = [UIScreen mainScreen].bounds.size.width - self.pageMagin*2; 91 | NSInteger pageIndex = contentOffsetX/pageSizeW; 92 | 93 | CGFloat scrale = (contentOffsetX/pageSizeW - pageIndex); 94 | if(scrale >= 0.99){ 95 | [self exchangeItemViewPosition]; //完成一次显示, 调整子视图位置 96 | } 97 | if(scrale <= 0){ 98 | return; 99 | } 100 | 101 | //视图(左) 102 | NSInteger currentIndex = (pageIndex%self.items.count); 103 | NSInteger nextIndex = ((currentIndex+1)>(self.items.count-1)?0:(currentIndex+1));; 104 | 105 | //视图缩放值(左) 106 | CGFloat scraleCurrent = self.config.scaleMax - (self.config.scaleMax-self.config.scaleMin)*scrale; 107 | CGFloat scraleNext = (self.config.scaleMax-self.config.scaleMin) *scrale +self.config.scaleMin; 108 | 109 | if (contentOffsetX < _lastContentOffset ){ //向右 110 | currentIndex = currentIndex +1 >= self.items.count?0:currentIndex +1; 111 | nextIndex = ((currentIndex-1)<0?self.items.count-1:(currentIndex-1)); 112 | scraleCurrent = (self.config.scaleMax-self.config.scaleMin) *scrale +self.config.scaleMin; 113 | scraleNext = self.config.scaleMax - (self.config.scaleMax-self.config.scaleMin)*scrale; 114 | } 115 | 116 | 117 | UIView * subViewCurrent = [self.contentView viewWithTag:currentIndex+BaseTag]; 118 | subViewCurrent.transform = CGAffineTransformMakeScale( scraleCurrent, scraleCurrent); 119 | UIView * subViewNext = [self.contentView viewWithTag:nextIndex+BaseTag]; 120 | subViewNext.transform = CGAffineTransformMakeScale(scraleNext, scraleNext); 121 | 122 | 123 | } 124 | - (void)scrollViewDidScroll:(UIScrollView *)scrollView{ 125 | 126 | //首次显示 127 | if (_lastOffsetX == 0) { 128 | [self itemViewStartAnimationWithContentOffset:scrollView.contentOffset.x]; 129 | _lastOffsetX = scrollView.contentOffset.x; 130 | return; 131 | } 132 | if(_lastOffsetX > scrollView.contentOffset.x){ //向左滑动 133 | 134 | for (CGFloat i = _lastOffsetX; i >= scrollView.contentOffset.x; i--) { 135 | [self itemViewStartAnimationWithContentOffset:i]; 136 | } 137 | 138 | }else{//向右滑动 139 | for (CGFloat i = _lastOffsetX; i < scrollView.contentOffset.x; i++) { 140 | [self itemViewStartAnimationWithContentOffset:i]; 141 | } 142 | } 143 | _lastOffsetX = scrollView.contentOffset.x; 144 | } 145 | 146 | /** 147 | 滚动结束调整子视图位置 148 | */ 149 | - (void)exchangeItemViewPosition{ 150 | self.pageIndex = self.contentView.contentOffset.x/([UIScreen mainScreen].bounds.size.width - self.pageMagin*2); 151 | CGSize pageSize = self.config.pageSize; 152 | self.contentView.contentSize = CGSizeMake(self.contentView.contentSize.width + pageSize.width, pageSize.height); 153 | if (self.contentView.contentOffset.x < _lastContentOffset ){ 154 | //向右 155 | NSInteger currentIndex = (self.pageIndex%self.items.count); 156 | NSInteger needMoveIndex = currentIndex-2 < 0?self.items.count+(currentIndex-2):currentIndex-2; 157 | UIView * subView = [self.contentView viewWithTag:BaseTag + needMoveIndex]; 158 | subView.transform = CGAffineTransformMakeScale(self.config.scaleMin, self.config.scaleMin); 159 | subView.center = CGPointMake((self.pageIndex-2) * pageSize.width+pageSize.width/2, subView.center.y); 160 | 161 | }else{ 162 | //向左 163 | NSInteger currentIndex = (self.pageIndex%self.items.count); 164 | NSInteger needMoveIndex = currentIndex+2 > self.items.count-1?(currentIndex+2 -self.items.count):currentIndex+2; 165 | UIView * subView = [self.contentView viewWithTag:BaseTag + needMoveIndex]; 166 | subView.transform = CGAffineTransformMakeScale(self.config.scaleMin, self.config.scaleMin); 167 | subView.center = CGPointMake((self.pageIndex+2) * pageSize.width+pageSize.width/2, subView.center.y); 168 | 169 | } 170 | } 171 | /**添加子view*/ 172 | - (void)setItems:(NSArray *)items{ 173 | _items = items; 174 | 175 | CGSize pageSize = self.config.pageSize; 176 | 177 | //将视图摆在中间, 并且消除求余误差 178 | CGFloat centerIetm = self.contentView.contentSize.width * 0.5; 179 | NSInteger pageIndex = centerIetm/pageSize.width; 180 | NSInteger pageOffsetIndex = pageIndex % self.items.count; 181 | centerIetm = centerIetm - pageOffsetIndex * pageSize.width; 182 | 183 | for(int i =0; i < items.count;i++){ 184 | UIView * view = items[i]; 185 | view.tag = BaseTag + i; 186 | view.frame = CGRectMake(i * pageSize.width + self.config.ItemMaingin + centerIetm, 0, pageSize.width-self.config.ItemMaingin*2, pageSize.height); 187 | [_contentView addSubview:view]; 188 | view.transform = CGAffineTransformMakeScale(self.config.scaleMin, self.config.scaleMin); 189 | } 190 | //这是默认显示 191 | UIView * view = [self.contentView viewWithTag:self.defalutIndex+BaseTag]; 192 | view.transform = CGAffineTransformMakeScale(self.config.scaleMax, self.config.scaleMax); 193 | [self.contentView setContentOffset:CGPointMake(centerIetm + pageSize.width*self.defalutIndex, 0)]; 194 | [self configDefult:self.defalutIndex]; 195 | } 196 | 197 | 198 | /**当默认值较小和较大的时候制造循环轮播条件*/ 199 | - (void)configDefult:(NSInteger)defultIndex{ 200 | NSInteger currentIndex = 0; 201 | NSInteger needMoveIndex = 0; 202 | NSInteger currentIndex2 = 0; 203 | NSInteger needMoveIndex2 = 0; 204 | CGFloat shouldOffset = 0; 205 | if(_defalutIndex <= 1){ //将最大和第二大的视图调整位置 206 | currentIndex = 0; 207 | needMoveIndex = self.items.count -1; 208 | currentIndex2 = self.items.count -1; 209 | needMoveIndex2 = self.items.count -2; 210 | shouldOffset = -self.config.pageSize.width; 211 | }else if(_defalutIndex >= self.items.count -2){//将最小和第二小的视图调整位置 212 | currentIndex = self.items.count -1; 213 | needMoveIndex = 0; 214 | currentIndex2 = 0; 215 | needMoveIndex2 = 1; 216 | shouldOffset = self.config.pageSize.width; 217 | 218 | } 219 | 220 | UIView * currentView = [self.contentView viewWithTag:BaseTag + currentIndex]; 221 | UIView * needMoveView = [self.contentView viewWithTag:BaseTag + needMoveIndex]; 222 | needMoveView.transform = CGAffineTransformMakeScale(self.config.scaleMin, self.config.scaleMin); 223 | needMoveView.center = CGPointMake(currentView.center.x + shouldOffset, needMoveView.center.y); 224 | 225 | 226 | UIView * currentView2 = [self.contentView viewWithTag:BaseTag + currentIndex2]; 227 | UIView * needMoveView2 = [self.contentView viewWithTag:BaseTag + needMoveIndex2]; 228 | needMoveView2.transform = CGAffineTransformMakeScale(self.config.scaleMin, self.config.scaleMin); 229 | needMoveView2.center = CGPointMake(currentView2.center.x + shouldOffset, needMoveView2.center.y); 230 | } 231 | 232 | @end 233 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------