├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── PullToReach.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── PullToReach.xcscheme │ └── Target Support Files │ │ ├── Pods-PullToReach_Example │ │ ├── Pods-PullToReach_Example-Info.plist │ │ ├── Pods-PullToReach_Example-acknowledgements.markdown │ │ ├── Pods-PullToReach_Example-acknowledgements.plist │ │ ├── Pods-PullToReach_Example-dummy.m │ │ ├── Pods-PullToReach_Example-frameworks.sh │ │ ├── Pods-PullToReach_Example-umbrella.h │ │ ├── Pods-PullToReach_Example.debug.xcconfig │ │ ├── Pods-PullToReach_Example.modulemap │ │ └── Pods-PullToReach_Example.release.xcconfig │ │ └── PullToReach │ │ ├── PullToReach-Info.plist │ │ ├── PullToReach-dummy.m │ │ ├── PullToReach-prefix.pch │ │ ├── PullToReach-umbrella.h │ │ ├── PullToReach.modulemap │ │ └── PullToReach.xcconfig ├── PullToReach.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PullToReach-Example.xcscheme ├── PullToReach.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── PullToReach │ ├── AddViewController.swift │ ├── AppDelegate.swift │ ├── Base.lproj │ └── LaunchScreen.xib │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Balazs_Toth.imageset │ │ ├── Balazs_Toth.jpg │ │ └── Contents.json │ ├── Contents.json │ ├── Eduardo_Prado.imageset │ │ ├── Contents.json │ │ └── Eduardo_Prado.jpg │ ├── Ghulam_Nasir.imageset │ │ ├── Contents.json │ │ └── Ghulam_Nasir.jpg │ ├── Julian_Bissekkou.imageset │ │ ├── Contents.json │ │ └── Julian_Bissekkou.jpg │ ├── Klaus_Niedermair.imageset │ │ ├── Contents.json │ │ └── Klaus_Niedermair.png │ ├── Lizzie_Studeneer.imageset │ │ ├── Contents.json │ │ └── Lizzie_Studeneer.jpg │ ├── Malte_Bucksch.imageset │ │ ├── Contents.json │ │ └── Malte_Bucksch.jpg │ ├── Mathias_Quintero.imageset │ │ ├── Contents.json │ │ └── Mathias_Quintero.jpg │ ├── Michael_Schlicker.imageset │ │ ├── Contents.json │ │ └── Michael_Schlicker.jpg │ ├── Nikolaos_Tzioras.imageset │ │ ├── Contents.json │ │ └── Nikolaos_Tzioras.jpg │ ├── Patrick_Sattler.imageset │ │ ├── Contents.json │ │ └── Patrick_Sattler.jpg │ ├── Paul_Kraft.imageset │ │ ├── Contents.json │ │ └── Paul_Kraft.jpg │ ├── Quirin_Schweigert.imageset │ │ ├── Contents.json │ │ └── Quirin_Schweigert.jpg │ ├── Sebastian_Sellmair.imageset │ │ ├── Contents.json │ │ └── Sebastian_Sellmair.jpg │ ├── Stefan_Kofler.imageset │ │ ├── Contents.json │ │ └── Stefan_Kofler.jpg │ ├── add.imageset │ │ ├── Contents.json │ │ ├── baseline_add_black_24pt_1x.png │ │ ├── baseline_add_black_24pt_2x.png │ │ └── baseline_add_black_24pt_3x.png │ ├── add_big.imageset │ │ ├── Contents.json │ │ ├── baseline_add_black_36pt_1x.png │ │ ├── baseline_add_black_36pt_2x.png │ │ └── baseline_add_black_36pt_3x.png │ ├── close.imageset │ │ ├── Contents.json │ │ ├── baseline_close_black_24pt_1x.png │ │ ├── baseline_close_black_24pt_2x.png │ │ └── baseline_close_black_24pt_3x.png │ ├── close_big.imageset │ │ ├── Contents.json │ │ ├── baseline_close_black_36pt_1x.png │ │ ├── baseline_close_black_36pt_2x.png │ │ └── baseline_close_black_36pt_3x.png │ ├── filter.imageset │ │ ├── Contents.json │ │ ├── baseline_filter_list_black_24pt_1x.png │ │ ├── baseline_filter_list_black_24pt_2x.png │ │ └── baseline_filter_list_black_24pt_3x.png │ ├── filter_big.imageset │ │ ├── Contents.json │ │ ├── baseline_filter_list_black_36pt_1x.png │ │ ├── baseline_filter_list_black_36pt_2x.png │ │ └── baseline_filter_list_black_36pt_3x.png │ ├── refresh.imageset │ │ ├── Contents.json │ │ ├── baseline_refresh_black_24pt_1x.png │ │ ├── baseline_refresh_black_24pt_2x.png │ │ └── baseline_refresh_black_24pt_3x.png │ ├── search.imageset │ │ ├── Contents.json │ │ ├── baseline_search_black_24pt_1x.png │ │ ├── baseline_search_black_24pt_2x.png │ │ └── baseline_search_black_24pt_3x.png │ └── search_big.imageset │ │ ├── Contents.json │ │ ├── baseline_search_black_36pt_1x.png │ │ ├── baseline_search_black_36pt_2x.png │ │ └── baseline_search_black_36pt_3x.png │ ├── Info.plist │ ├── ProfileViewController.swift │ ├── TeamMember.swift │ ├── TeamMemberDataSource.swift │ └── TeamMembersViewController.swift ├── LICENSE ├── PullToReach.podspec ├── PullToReach ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── PullToReach.swift │ ├── PullToReachObserver.swift │ ├── PullToReachTarget.swift │ ├── SelectionIndicatorView.swift │ └── UIView+Helper.swift ├── README.md ├── _Pods.xcodeproj └── pull_to_reach.gif /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/PullToReach.xcworkspace -scheme PullToReach-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'PullToReach_Example' do 4 | pod 'PullToReach', :path => '../' 5 | end 6 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - PullToReach (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - PullToReach (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | PullToReach: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | PullToReach: 3cff2469571a4222dbe97ac69dcd95f7a40bf8b6 13 | 14 | PODFILE CHECKSUM: 4cece9debb48e9f600cd001f90f788e8d49f3d76 15 | 16 | COCOAPODS: 1.6.0.beta.2 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/PullToReach.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PullToReach", 3 | "version": "0.1.0", 4 | "summary": "A short description of PullToReach.", 5 | "module_name": "PullToReach", 6 | "description": "TODO: Add long description of the pod here.", 7 | "homepage": "https://github.com/quickbirdstudios/PullToReach", 8 | "license": { 9 | "type": "MIT", 10 | "file": "LICENSE" 11 | }, 12 | "authors": { 13 | "Stefan Kofler": "stefan.kofler@quickbirdstudios.com" 14 | }, 15 | "source": { 16 | "git": "https://github.com/quickbirdstudios/PullToReach.git", 17 | "tag": "0.1.0" 18 | }, 19 | "platforms": { 20 | "ios": "11.0" 21 | }, 22 | "source_files": "PullToReach/Classes/**/*", 23 | "frameworks": "UIKit" 24 | } 25 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - PullToReach (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - PullToReach (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | PullToReach: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | PullToReach: 3cff2469571a4222dbe97ac69dcd95f7a40bf8b6 13 | 14 | PODFILE CHECKSUM: 4cece9debb48e9f600cd001f90f788e8d49f3d76 15 | 16 | COCOAPODS: 1.6.0.beta.2 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 | 236E1562336E6D9E50C5050ADB060E6C /* PullToReach.swift in Sources */ = {isa = PBXBuildFile; fileRef = F538B4842D3617F3A4332B92530ADCA6 /* PullToReach.swift */; }; 11 | 31BCE53D57B4B60747AA77C03344924D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40CB39E715FBCDAA142E6513E126200A /* Foundation.framework */; }; 12 | 6BDF5010362617BF977C978FACE9F2D6 /* UIView+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7340A49AAEBD23E1377E130E1704754 /* UIView+Helper.swift */; }; 13 | 8721685066516E7DD45FAF624E20FA4A /* PullToReachObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85F50E2462931C21FD1C045DF30B3121 /* PullToReachObserver.swift */; }; 14 | 90D928F32E48FD7E1AF88DC660AF6B4C /* Pods-PullToReach_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E81E68051F957BAD83F2569B490576D4 /* Pods-PullToReach_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 9B4FB710228B4EAE00136603 /* SelectionIndicatorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B4FB70E228B4D5B00136603 /* SelectionIndicatorView.swift */; }; 16 | A03D0EEDA623259336B83E7890A66388 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF2A2B0720AE923C22BED3192888BE0 /* UIKit.framework */; }; 17 | C8DBFAD876A2F388F9556491410C5C99 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40CB39E715FBCDAA142E6513E126200A /* Foundation.framework */; }; 18 | D1115D670C9C7103406942DFB1BE1FBC /* PullToReach-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A4D4E91AAA01CF3FBB654D0D336425 /* PullToReach-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | DD873C3F12D9A5D4A09F4AAD4A13F9DB /* PullToReachTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1CB06D9360BF8A22144EB74953F837E /* PullToReachTarget.swift */; }; 20 | E1E539C690182A3301850F20F2E5C19C /* PullToReach-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A5D4DC522368E81F2A8FE5410230A3 /* PullToReach-dummy.m */; }; 21 | F8DFF4E4901A567A86BEB06BE8ECB8E1 /* Pods-PullToReach_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C0CEA4D6D67895AF623B0304EC57E86 /* Pods-PullToReach_Example-dummy.m */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | F22830B97FBBE9DB6EF858C7B1CBABD4 /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = A3E3C8E94C7A072A97ECA4E31380E96C; 30 | remoteInfo = PullToReach; 31 | }; 32 | /* End PBXContainerItemProxy section */ 33 | 34 | /* Begin PBXFileReference section */ 35 | 01A4D4E91AAA01CF3FBB654D0D336425 /* PullToReach-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PullToReach-umbrella.h"; sourceTree = ""; }; 36 | 2129B563BAACCBE7261109C6C314B84C /* PullToReach-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PullToReach-prefix.pch"; sourceTree = ""; }; 37 | 254C99A238248627E7BE047BCC1EE4CD /* Pods-PullToReach_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PullToReach_Example-acknowledgements.markdown"; sourceTree = ""; }; 38 | 3715345EC04757E46F40AA640062FE0D /* Pods-PullToReach_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PullToReach_Example-acknowledgements.plist"; sourceTree = ""; }; 39 | 40CB39E715FBCDAA142E6513E126200A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 40 | 53D07539BC07AA6AD249E7DCE707B32F /* Pods-PullToReach_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PullToReach_Example-frameworks.sh"; sourceTree = ""; }; 41 | 55EA14D30A6F156DBB719C47A48164FA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 42 | 5C303A1A2275E84ABF34539C6B39456E /* Pods_PullToReach_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PullToReach_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 63F6792EFBA3A3456330FD011005453B /* PullToReach.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PullToReach.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | 85F50E2462931C21FD1C045DF30B3121 /* PullToReachObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PullToReachObserver.swift; path = PullToReach/Classes/PullToReachObserver.swift; sourceTree = ""; }; 45 | 87387298B5A965F4EBE4400FFBB738C8 /* Pods-PullToReach_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PullToReach_Example.modulemap"; sourceTree = ""; }; 46 | 9B4FB70E228B4D5B00136603 /* SelectionIndicatorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = SelectionIndicatorView.swift; path = PullToReach/Classes/SelectionIndicatorView.swift; sourceTree = ""; }; 47 | 9C0CEA4D6D67895AF623B0304EC57E86 /* Pods-PullToReach_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PullToReach_Example-dummy.m"; sourceTree = ""; }; 48 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 49 | 9E84521803AB19718F498200BE3ED687 /* PullToReach.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PullToReach.xcconfig; sourceTree = ""; }; 50 | B994638494A287919F6E36E88C906F02 /* PullToReach.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = PullToReach.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 51 | C8A5D4DC522368E81F2A8FE5410230A3 /* PullToReach-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PullToReach-dummy.m"; sourceTree = ""; }; 52 | C9DDDCD8CB7FBBC7D9B97CCCA72824DC /* Pods-PullToReach_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PullToReach_Example-Info.plist"; sourceTree = ""; }; 53 | DFE265D26AE6A515B35EEDF000914B4F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 54 | E1CB06D9360BF8A22144EB74953F837E /* PullToReachTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PullToReachTarget.swift; path = PullToReach/Classes/PullToReachTarget.swift; sourceTree = ""; }; 55 | E81E68051F957BAD83F2569B490576D4 /* Pods-PullToReach_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PullToReach_Example-umbrella.h"; sourceTree = ""; }; 56 | ECF2A2B0720AE923C22BED3192888BE0 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; 57 | F0C765C217E232A88D914158DA472BB3 /* PullToReach.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PullToReach.modulemap; sourceTree = ""; }; 58 | F538B4842D3617F3A4332B92530ADCA6 /* PullToReach.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PullToReach.swift; path = PullToReach/Classes/PullToReach.swift; sourceTree = ""; }; 59 | F5C6C1A80B12D51A7E99EE542BEA893F /* PullToReach-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PullToReach-Info.plist"; sourceTree = ""; }; 60 | F7340A49AAEBD23E1377E130E1704754 /* UIView+Helper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Helper.swift"; path = "PullToReach/Classes/UIView+Helper.swift"; sourceTree = ""; }; 61 | F761C7F386318437EF0D57219F8B2958 /* Pods-PullToReach_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PullToReach_Example.debug.xcconfig"; sourceTree = ""; }; 62 | FB1B8A69FFDA4DD2D149E54C297AFA04 /* Pods-PullToReach_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PullToReach_Example.release.xcconfig"; sourceTree = ""; }; 63 | /* End PBXFileReference section */ 64 | 65 | /* Begin PBXFrameworksBuildPhase section */ 66 | 3916D7A6A32FBA3F3FDFEAAB74D4E19C /* Frameworks */ = { 67 | isa = PBXFrameworksBuildPhase; 68 | buildActionMask = 2147483647; 69 | files = ( 70 | 31BCE53D57B4B60747AA77C03344924D /* Foundation.framework in Frameworks */, 71 | ); 72 | runOnlyForDeploymentPostprocessing = 0; 73 | }; 74 | CC929DF10B36766449C4FC422701C9D0 /* Frameworks */ = { 75 | isa = PBXFrameworksBuildPhase; 76 | buildActionMask = 2147483647; 77 | files = ( 78 | C8DBFAD876A2F388F9556491410C5C99 /* Foundation.framework in Frameworks */, 79 | A03D0EEDA623259336B83E7890A66388 /* UIKit.framework in Frameworks */, 80 | ); 81 | runOnlyForDeploymentPostprocessing = 0; 82 | }; 83 | /* End PBXFrameworksBuildPhase section */ 84 | 85 | /* Begin PBXGroup section */ 86 | 1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | E169A450ED27AC725DF52953F66D11E0 /* iOS */, 90 | ); 91 | name = Frameworks; 92 | sourceTree = ""; 93 | }; 94 | 3A6976F2759F5C09B92D0296ED1E5CC2 /* Pods-PullToReach_Example */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | 87387298B5A965F4EBE4400FFBB738C8 /* Pods-PullToReach_Example.modulemap */, 98 | 254C99A238248627E7BE047BCC1EE4CD /* Pods-PullToReach_Example-acknowledgements.markdown */, 99 | 3715345EC04757E46F40AA640062FE0D /* Pods-PullToReach_Example-acknowledgements.plist */, 100 | 9C0CEA4D6D67895AF623B0304EC57E86 /* Pods-PullToReach_Example-dummy.m */, 101 | 53D07539BC07AA6AD249E7DCE707B32F /* Pods-PullToReach_Example-frameworks.sh */, 102 | C9DDDCD8CB7FBBC7D9B97CCCA72824DC /* Pods-PullToReach_Example-Info.plist */, 103 | E81E68051F957BAD83F2569B490576D4 /* Pods-PullToReach_Example-umbrella.h */, 104 | F761C7F386318437EF0D57219F8B2958 /* Pods-PullToReach_Example.debug.xcconfig */, 105 | FB1B8A69FFDA4DD2D149E54C297AFA04 /* Pods-PullToReach_Example.release.xcconfig */, 106 | ); 107 | name = "Pods-PullToReach_Example"; 108 | path = "Target Support Files/Pods-PullToReach_Example"; 109 | sourceTree = ""; 110 | }; 111 | 4034290FD338E14BBE5D3053B22F9C52 /* Support Files */ = { 112 | isa = PBXGroup; 113 | children = ( 114 | F0C765C217E232A88D914158DA472BB3 /* PullToReach.modulemap */, 115 | 9E84521803AB19718F498200BE3ED687 /* PullToReach.xcconfig */, 116 | C8A5D4DC522368E81F2A8FE5410230A3 /* PullToReach-dummy.m */, 117 | F5C6C1A80B12D51A7E99EE542BEA893F /* PullToReach-Info.plist */, 118 | 2129B563BAACCBE7261109C6C314B84C /* PullToReach-prefix.pch */, 119 | 01A4D4E91AAA01CF3FBB654D0D336425 /* PullToReach-umbrella.h */, 120 | ); 121 | name = "Support Files"; 122 | path = "Example/Pods/Target Support Files/PullToReach"; 123 | sourceTree = ""; 124 | }; 125 | 56525CB9C5A08CA6843535195AF9C989 /* PullToReach */ = { 126 | isa = PBXGroup; 127 | children = ( 128 | F538B4842D3617F3A4332B92530ADCA6 /* PullToReach.swift */, 129 | 85F50E2462931C21FD1C045DF30B3121 /* PullToReachObserver.swift */, 130 | E1CB06D9360BF8A22144EB74953F837E /* PullToReachTarget.swift */, 131 | 9B4FB70E228B4D5B00136603 /* SelectionIndicatorView.swift */, 132 | F7340A49AAEBD23E1377E130E1704754 /* UIView+Helper.swift */, 133 | 5B4CC39E94AD735A4FEBB0FCF9F93966 /* Pod */, 134 | 4034290FD338E14BBE5D3053B22F9C52 /* Support Files */, 135 | ); 136 | name = PullToReach; 137 | path = ../..; 138 | sourceTree = ""; 139 | }; 140 | 5B4CC39E94AD735A4FEBB0FCF9F93966 /* Pod */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | 55EA14D30A6F156DBB719C47A48164FA /* LICENSE */, 144 | B994638494A287919F6E36E88C906F02 /* PullToReach.podspec */, 145 | DFE265D26AE6A515B35EEDF000914B4F /* README.md */, 146 | ); 147 | name = Pod; 148 | sourceTree = ""; 149 | }; 150 | 6367A031646A7EF31EA32F4ACD885915 /* Targets Support Files */ = { 151 | isa = PBXGroup; 152 | children = ( 153 | 3A6976F2759F5C09B92D0296ED1E5CC2 /* Pods-PullToReach_Example */, 154 | ); 155 | name = "Targets Support Files"; 156 | sourceTree = ""; 157 | }; 158 | 6C9865B3343ABB272EA949ADC14738C9 /* Products */ = { 159 | isa = PBXGroup; 160 | children = ( 161 | 5C303A1A2275E84ABF34539C6B39456E /* Pods_PullToReach_Example.framework */, 162 | 63F6792EFBA3A3456330FD011005453B /* PullToReach.framework */, 163 | ); 164 | name = Products; 165 | sourceTree = ""; 166 | }; 167 | 903F2D7BF743FCBDCC74AA692969E8E7 /* Development Pods */ = { 168 | isa = PBXGroup; 169 | children = ( 170 | 56525CB9C5A08CA6843535195AF9C989 /* PullToReach */, 171 | ); 172 | name = "Development Pods"; 173 | sourceTree = ""; 174 | }; 175 | CF1408CF629C7361332E53B88F7BD30C = { 176 | isa = PBXGroup; 177 | children = ( 178 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 179 | 903F2D7BF743FCBDCC74AA692969E8E7 /* Development Pods */, 180 | 1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */, 181 | 6C9865B3343ABB272EA949ADC14738C9 /* Products */, 182 | 6367A031646A7EF31EA32F4ACD885915 /* Targets Support Files */, 183 | ); 184 | sourceTree = ""; 185 | }; 186 | E169A450ED27AC725DF52953F66D11E0 /* iOS */ = { 187 | isa = PBXGroup; 188 | children = ( 189 | 40CB39E715FBCDAA142E6513E126200A /* Foundation.framework */, 190 | ECF2A2B0720AE923C22BED3192888BE0 /* UIKit.framework */, 191 | ); 192 | name = iOS; 193 | sourceTree = ""; 194 | }; 195 | /* End PBXGroup section */ 196 | 197 | /* Begin PBXHeadersBuildPhase section */ 198 | 087C17F9C982E68B4662BF5E181BD634 /* Headers */ = { 199 | isa = PBXHeadersBuildPhase; 200 | buildActionMask = 2147483647; 201 | files = ( 202 | D1115D670C9C7103406942DFB1BE1FBC /* PullToReach-umbrella.h in Headers */, 203 | ); 204 | runOnlyForDeploymentPostprocessing = 0; 205 | }; 206 | 1734C4AAD25F3AEF80E380F49B1D8419 /* Headers */ = { 207 | isa = PBXHeadersBuildPhase; 208 | buildActionMask = 2147483647; 209 | files = ( 210 | 90D928F32E48FD7E1AF88DC660AF6B4C /* Pods-PullToReach_Example-umbrella.h in Headers */, 211 | ); 212 | runOnlyForDeploymentPostprocessing = 0; 213 | }; 214 | /* End PBXHeadersBuildPhase section */ 215 | 216 | /* Begin PBXNativeTarget section */ 217 | 3F4B95AB00ACE29CF24C7435D1D1AF9C /* Pods-PullToReach_Example */ = { 218 | isa = PBXNativeTarget; 219 | buildConfigurationList = 4997229041668974E0C477163B664575 /* Build configuration list for PBXNativeTarget "Pods-PullToReach_Example" */; 220 | buildPhases = ( 221 | 1734C4AAD25F3AEF80E380F49B1D8419 /* Headers */, 222 | B4E5CA326E8DCF6F8769B831F4B5CEBF /* Sources */, 223 | 3916D7A6A32FBA3F3FDFEAAB74D4E19C /* Frameworks */, 224 | 85868036810759E22C9868B27C7897B9 /* Resources */, 225 | ); 226 | buildRules = ( 227 | ); 228 | dependencies = ( 229 | 119CB5059C0A6A36636720B5BDF99CCE /* PBXTargetDependency */, 230 | ); 231 | name = "Pods-PullToReach_Example"; 232 | productName = "Pods-PullToReach_Example"; 233 | productReference = 5C303A1A2275E84ABF34539C6B39456E /* Pods_PullToReach_Example.framework */; 234 | productType = "com.apple.product-type.framework"; 235 | }; 236 | A3E3C8E94C7A072A97ECA4E31380E96C /* PullToReach */ = { 237 | isa = PBXNativeTarget; 238 | buildConfigurationList = 34C9ACF1D512ED9683CD9AAE5C24FEE9 /* Build configuration list for PBXNativeTarget "PullToReach" */; 239 | buildPhases = ( 240 | 087C17F9C982E68B4662BF5E181BD634 /* Headers */, 241 | D9FB110287745F2AA0DDD3FE720BDF82 /* Sources */, 242 | CC929DF10B36766449C4FC422701C9D0 /* Frameworks */, 243 | D2412681192C46EB868C1025F684CA12 /* Resources */, 244 | ); 245 | buildRules = ( 246 | ); 247 | dependencies = ( 248 | ); 249 | name = PullToReach; 250 | productName = PullToReach; 251 | productReference = 63F6792EFBA3A3456330FD011005453B /* PullToReach.framework */; 252 | productType = "com.apple.product-type.framework"; 253 | }; 254 | /* End PBXNativeTarget section */ 255 | 256 | /* Begin PBXProject section */ 257 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 258 | isa = PBXProject; 259 | attributes = { 260 | LastSwiftUpdateCheck = 0930; 261 | LastUpgradeCheck = 1020; 262 | TargetAttributes = { 263 | 3F4B95AB00ACE29CF24C7435D1D1AF9C = { 264 | LastSwiftMigration = 1020; 265 | }; 266 | A3E3C8E94C7A072A97ECA4E31380E96C = { 267 | LastSwiftMigration = 1020; 268 | }; 269 | }; 270 | }; 271 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 272 | compatibilityVersion = "Xcode 3.2"; 273 | developmentRegion = en; 274 | hasScannedForEncodings = 0; 275 | knownRegions = ( 276 | en, 277 | Base, 278 | ); 279 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 280 | productRefGroup = 6C9865B3343ABB272EA949ADC14738C9 /* Products */; 281 | projectDirPath = ""; 282 | projectRoot = ""; 283 | targets = ( 284 | 3F4B95AB00ACE29CF24C7435D1D1AF9C /* Pods-PullToReach_Example */, 285 | A3E3C8E94C7A072A97ECA4E31380E96C /* PullToReach */, 286 | ); 287 | }; 288 | /* End PBXProject section */ 289 | 290 | /* Begin PBXResourcesBuildPhase section */ 291 | 85868036810759E22C9868B27C7897B9 /* Resources */ = { 292 | isa = PBXResourcesBuildPhase; 293 | buildActionMask = 2147483647; 294 | files = ( 295 | ); 296 | runOnlyForDeploymentPostprocessing = 0; 297 | }; 298 | D2412681192C46EB868C1025F684CA12 /* Resources */ = { 299 | isa = PBXResourcesBuildPhase; 300 | buildActionMask = 2147483647; 301 | files = ( 302 | ); 303 | runOnlyForDeploymentPostprocessing = 0; 304 | }; 305 | /* End PBXResourcesBuildPhase section */ 306 | 307 | /* Begin PBXSourcesBuildPhase section */ 308 | B4E5CA326E8DCF6F8769B831F4B5CEBF /* Sources */ = { 309 | isa = PBXSourcesBuildPhase; 310 | buildActionMask = 2147483647; 311 | files = ( 312 | F8DFF4E4901A567A86BEB06BE8ECB8E1 /* Pods-PullToReach_Example-dummy.m in Sources */, 313 | ); 314 | runOnlyForDeploymentPostprocessing = 0; 315 | }; 316 | D9FB110287745F2AA0DDD3FE720BDF82 /* Sources */ = { 317 | isa = PBXSourcesBuildPhase; 318 | buildActionMask = 2147483647; 319 | files = ( 320 | E1E539C690182A3301850F20F2E5C19C /* PullToReach-dummy.m in Sources */, 321 | 9B4FB710228B4EAE00136603 /* SelectionIndicatorView.swift in Sources */, 322 | 236E1562336E6D9E50C5050ADB060E6C /* PullToReach.swift in Sources */, 323 | 8721685066516E7DD45FAF624E20FA4A /* PullToReachObserver.swift in Sources */, 324 | DD873C3F12D9A5D4A09F4AAD4A13F9DB /* PullToReachTarget.swift in Sources */, 325 | 6BDF5010362617BF977C978FACE9F2D6 /* UIView+Helper.swift in Sources */, 326 | ); 327 | runOnlyForDeploymentPostprocessing = 0; 328 | }; 329 | /* End PBXSourcesBuildPhase section */ 330 | 331 | /* Begin PBXTargetDependency section */ 332 | 119CB5059C0A6A36636720B5BDF99CCE /* PBXTargetDependency */ = { 333 | isa = PBXTargetDependency; 334 | name = PullToReach; 335 | target = A3E3C8E94C7A072A97ECA4E31380E96C /* PullToReach */; 336 | targetProxy = F22830B97FBBE9DB6EF858C7B1CBABD4 /* PBXContainerItemProxy */; 337 | }; 338 | /* End PBXTargetDependency section */ 339 | 340 | /* Begin XCBuildConfiguration section */ 341 | 0AE36E7F5774FCC711CB91F8499EF9E4 /* Debug */ = { 342 | isa = XCBuildConfiguration; 343 | baseConfigurationReference = F761C7F386318437EF0D57219F8B2958 /* Pods-PullToReach_Example.debug.xcconfig */; 344 | buildSettings = { 345 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 346 | CLANG_ENABLE_MODULES = YES; 347 | CLANG_ENABLE_OBJC_WEAK = NO; 348 | CODE_SIGN_IDENTITY = ""; 349 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 350 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 351 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 352 | CURRENT_PROJECT_VERSION = 1; 353 | DEFINES_MODULE = YES; 354 | DYLIB_COMPATIBILITY_VERSION = 1; 355 | DYLIB_CURRENT_VERSION = 1; 356 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 357 | INFOPLIST_FILE = "Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example-Info.plist"; 358 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 359 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 360 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 361 | MACH_O_TYPE = staticlib; 362 | MODULEMAP_FILE = "Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example.modulemap"; 363 | OTHER_LDFLAGS = ""; 364 | OTHER_LIBTOOLFLAGS = ""; 365 | PODS_ROOT = "$(SRCROOT)"; 366 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 367 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 368 | SDKROOT = iphoneos; 369 | SKIP_INSTALL = YES; 370 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 371 | SWIFT_VERSION = 5.0; 372 | TARGETED_DEVICE_FAMILY = "1,2"; 373 | VERSIONING_SYSTEM = "apple-generic"; 374 | VERSION_INFO_PREFIX = ""; 375 | }; 376 | name = Debug; 377 | }; 378 | 4BE9E5230518542B2844284E951E7455 /* Release */ = { 379 | isa = XCBuildConfiguration; 380 | baseConfigurationReference = 9E84521803AB19718F498200BE3ED687 /* PullToReach.xcconfig */; 381 | buildSettings = { 382 | CLANG_ENABLE_OBJC_WEAK = NO; 383 | CODE_SIGN_IDENTITY = ""; 384 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 385 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 386 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 387 | CURRENT_PROJECT_VERSION = 1; 388 | DEFINES_MODULE = YES; 389 | DYLIB_COMPATIBILITY_VERSION = 1; 390 | DYLIB_CURRENT_VERSION = 1; 391 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 392 | GCC_PREFIX_HEADER = "Target Support Files/PullToReach/PullToReach-prefix.pch"; 393 | INFOPLIST_FILE = "Target Support Files/PullToReach/PullToReach-Info.plist"; 394 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 395 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 396 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 397 | MODULEMAP_FILE = "Target Support Files/PullToReach/PullToReach.modulemap"; 398 | PRODUCT_MODULE_NAME = PullToReach; 399 | PRODUCT_NAME = PullToReach; 400 | SDKROOT = iphoneos; 401 | SKIP_INSTALL = YES; 402 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 403 | SWIFT_VERSION = 4.0; 404 | TARGETED_DEVICE_FAMILY = "1,2"; 405 | VALIDATE_PRODUCT = YES; 406 | VERSIONING_SYSTEM = "apple-generic"; 407 | VERSION_INFO_PREFIX = ""; 408 | }; 409 | name = Release; 410 | }; 411 | 4CE281642D6EE9FAB113046B4B6328A0 /* Release */ = { 412 | isa = XCBuildConfiguration; 413 | buildSettings = { 414 | ALWAYS_SEARCH_USER_PATHS = NO; 415 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 416 | CLANG_ANALYZER_NONNULL = YES; 417 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 418 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 419 | CLANG_CXX_LIBRARY = "libc++"; 420 | CLANG_ENABLE_MODULES = YES; 421 | CLANG_ENABLE_OBJC_ARC = YES; 422 | CLANG_ENABLE_OBJC_WEAK = YES; 423 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 424 | CLANG_WARN_BOOL_CONVERSION = YES; 425 | CLANG_WARN_COMMA = YES; 426 | CLANG_WARN_CONSTANT_CONVERSION = YES; 427 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 428 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 429 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 430 | CLANG_WARN_EMPTY_BODY = YES; 431 | CLANG_WARN_ENUM_CONVERSION = YES; 432 | CLANG_WARN_INFINITE_RECURSION = YES; 433 | CLANG_WARN_INT_CONVERSION = YES; 434 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 435 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 436 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 437 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 438 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 439 | CLANG_WARN_STRICT_PROTOTYPES = YES; 440 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 441 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 442 | CLANG_WARN_UNREACHABLE_CODE = YES; 443 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 444 | COPY_PHASE_STRIP = NO; 445 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 446 | ENABLE_NS_ASSERTIONS = NO; 447 | ENABLE_STRICT_OBJC_MSGSEND = YES; 448 | GCC_C_LANGUAGE_STANDARD = gnu11; 449 | GCC_NO_COMMON_BLOCKS = YES; 450 | GCC_PREPROCESSOR_DEFINITIONS = ( 451 | "POD_CONFIGURATION_RELEASE=1", 452 | "$(inherited)", 453 | ); 454 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 455 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 456 | GCC_WARN_UNDECLARED_SELECTOR = YES; 457 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 458 | GCC_WARN_UNUSED_FUNCTION = YES; 459 | GCC_WARN_UNUSED_VARIABLE = YES; 460 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 461 | MTL_ENABLE_DEBUG_INFO = NO; 462 | MTL_FAST_MATH = YES; 463 | PRODUCT_NAME = "$(TARGET_NAME)"; 464 | STRIP_INSTALLED_PRODUCT = NO; 465 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 466 | SWIFT_VERSION = 4.2; 467 | SYMROOT = "${SRCROOT}/../build"; 468 | }; 469 | name = Release; 470 | }; 471 | 63CB03DC0D56D1FD0A9D87A8991F29E6 /* Debug */ = { 472 | isa = XCBuildConfiguration; 473 | baseConfigurationReference = 9E84521803AB19718F498200BE3ED687 /* PullToReach.xcconfig */; 474 | buildSettings = { 475 | CLANG_ENABLE_OBJC_WEAK = NO; 476 | CODE_SIGN_IDENTITY = ""; 477 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 478 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 479 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 480 | CURRENT_PROJECT_VERSION = 1; 481 | DEFINES_MODULE = YES; 482 | DYLIB_COMPATIBILITY_VERSION = 1; 483 | DYLIB_CURRENT_VERSION = 1; 484 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 485 | GCC_PREFIX_HEADER = "Target Support Files/PullToReach/PullToReach-prefix.pch"; 486 | INFOPLIST_FILE = "Target Support Files/PullToReach/PullToReach-Info.plist"; 487 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 488 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 489 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 490 | MODULEMAP_FILE = "Target Support Files/PullToReach/PullToReach.modulemap"; 491 | PRODUCT_MODULE_NAME = PullToReach; 492 | PRODUCT_NAME = PullToReach; 493 | SDKROOT = iphoneos; 494 | SKIP_INSTALL = YES; 495 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 496 | SWIFT_VERSION = 4.0; 497 | TARGETED_DEVICE_FAMILY = "1,2"; 498 | VERSIONING_SYSTEM = "apple-generic"; 499 | VERSION_INFO_PREFIX = ""; 500 | }; 501 | name = Debug; 502 | }; 503 | 6DFA1578582149B7E24AD55CBA30F07A /* Debug */ = { 504 | isa = XCBuildConfiguration; 505 | buildSettings = { 506 | ALWAYS_SEARCH_USER_PATHS = NO; 507 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 508 | CLANG_ANALYZER_NONNULL = YES; 509 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 510 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 511 | CLANG_CXX_LIBRARY = "libc++"; 512 | CLANG_ENABLE_MODULES = YES; 513 | CLANG_ENABLE_OBJC_ARC = YES; 514 | CLANG_ENABLE_OBJC_WEAK = YES; 515 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 516 | CLANG_WARN_BOOL_CONVERSION = YES; 517 | CLANG_WARN_COMMA = YES; 518 | CLANG_WARN_CONSTANT_CONVERSION = YES; 519 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 520 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 521 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 522 | CLANG_WARN_EMPTY_BODY = YES; 523 | CLANG_WARN_ENUM_CONVERSION = YES; 524 | CLANG_WARN_INFINITE_RECURSION = YES; 525 | CLANG_WARN_INT_CONVERSION = YES; 526 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 527 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 528 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 529 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 530 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 531 | CLANG_WARN_STRICT_PROTOTYPES = YES; 532 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 533 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 534 | CLANG_WARN_UNREACHABLE_CODE = YES; 535 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 536 | COPY_PHASE_STRIP = NO; 537 | DEBUG_INFORMATION_FORMAT = dwarf; 538 | ENABLE_STRICT_OBJC_MSGSEND = YES; 539 | ENABLE_TESTABILITY = YES; 540 | GCC_C_LANGUAGE_STANDARD = gnu11; 541 | GCC_DYNAMIC_NO_PIC = NO; 542 | GCC_NO_COMMON_BLOCKS = YES; 543 | GCC_OPTIMIZATION_LEVEL = 0; 544 | GCC_PREPROCESSOR_DEFINITIONS = ( 545 | "POD_CONFIGURATION_DEBUG=1", 546 | "DEBUG=1", 547 | "$(inherited)", 548 | ); 549 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 550 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 551 | GCC_WARN_UNDECLARED_SELECTOR = YES; 552 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 553 | GCC_WARN_UNUSED_FUNCTION = YES; 554 | GCC_WARN_UNUSED_VARIABLE = YES; 555 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 556 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 557 | MTL_FAST_MATH = YES; 558 | ONLY_ACTIVE_ARCH = YES; 559 | PRODUCT_NAME = "$(TARGET_NAME)"; 560 | STRIP_INSTALLED_PRODUCT = NO; 561 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 562 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 563 | SWIFT_VERSION = 4.2; 564 | SYMROOT = "${SRCROOT}/../build"; 565 | }; 566 | name = Debug; 567 | }; 568 | 9EF1361E26918A43FE0FD5743DF615A0 /* Release */ = { 569 | isa = XCBuildConfiguration; 570 | baseConfigurationReference = FB1B8A69FFDA4DD2D149E54C297AFA04 /* Pods-PullToReach_Example.release.xcconfig */; 571 | buildSettings = { 572 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 573 | CLANG_ENABLE_MODULES = YES; 574 | CLANG_ENABLE_OBJC_WEAK = NO; 575 | CODE_SIGN_IDENTITY = ""; 576 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 577 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 578 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 579 | CURRENT_PROJECT_VERSION = 1; 580 | DEFINES_MODULE = YES; 581 | DYLIB_COMPATIBILITY_VERSION = 1; 582 | DYLIB_CURRENT_VERSION = 1; 583 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 584 | INFOPLIST_FILE = "Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example-Info.plist"; 585 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 586 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 587 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 588 | MACH_O_TYPE = staticlib; 589 | MODULEMAP_FILE = "Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example.modulemap"; 590 | OTHER_LDFLAGS = ""; 591 | OTHER_LIBTOOLFLAGS = ""; 592 | PODS_ROOT = "$(SRCROOT)"; 593 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 594 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 595 | SDKROOT = iphoneos; 596 | SKIP_INSTALL = YES; 597 | SWIFT_VERSION = 5.0; 598 | TARGETED_DEVICE_FAMILY = "1,2"; 599 | VALIDATE_PRODUCT = YES; 600 | VERSIONING_SYSTEM = "apple-generic"; 601 | VERSION_INFO_PREFIX = ""; 602 | }; 603 | name = Release; 604 | }; 605 | /* End XCBuildConfiguration section */ 606 | 607 | /* Begin XCConfigurationList section */ 608 | 34C9ACF1D512ED9683CD9AAE5C24FEE9 /* Build configuration list for PBXNativeTarget "PullToReach" */ = { 609 | isa = XCConfigurationList; 610 | buildConfigurations = ( 611 | 63CB03DC0D56D1FD0A9D87A8991F29E6 /* Debug */, 612 | 4BE9E5230518542B2844284E951E7455 /* Release */, 613 | ); 614 | defaultConfigurationIsVisible = 0; 615 | defaultConfigurationName = Release; 616 | }; 617 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 618 | isa = XCConfigurationList; 619 | buildConfigurations = ( 620 | 6DFA1578582149B7E24AD55CBA30F07A /* Debug */, 621 | 4CE281642D6EE9FAB113046B4B6328A0 /* Release */, 622 | ); 623 | defaultConfigurationIsVisible = 0; 624 | defaultConfigurationName = Release; 625 | }; 626 | 4997229041668974E0C477163B664575 /* Build configuration list for PBXNativeTarget "Pods-PullToReach_Example" */ = { 627 | isa = XCConfigurationList; 628 | buildConfigurations = ( 629 | 0AE36E7F5774FCC711CB91F8499EF9E4 /* Debug */, 630 | 9EF1361E26918A43FE0FD5743DF615A0 /* Release */, 631 | ); 632 | defaultConfigurationIsVisible = 0; 633 | defaultConfigurationName = Release; 634 | }; 635 | /* End XCConfigurationList section */ 636 | }; 637 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 638 | } 639 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PullToReach.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 47 | 53 | 54 | 55 | 56 | 57 | 58 | 68 | 70 | 76 | 77 | 78 | 79 | 80 | 81 | 87 | 88 | 94 | 95 | 96 | 97 | 99 | 100 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_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-PullToReach_Example/Pods-PullToReach_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## PullToReach 5 | 6 | Copyright (c) 2019 grafele 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-PullToReach_Example/Pods-PullToReach_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 grafele <stefan.kofler@quickbirdstudios.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 | PullToReach 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-PullToReach_Example/Pods-PullToReach_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_PullToReach_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_PullToReach_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_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 | # Signs a framework with the provided identity 113 | code_sign_if_enabled() { 114 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 115 | # Use the current code_sign_identity 116 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 117 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 118 | 119 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 120 | code_sign_cmd="$code_sign_cmd &" 121 | fi 122 | echo "$code_sign_cmd" 123 | eval "$code_sign_cmd" 124 | fi 125 | } 126 | 127 | # Strip invalid architectures 128 | strip_invalid_archs() { 129 | binary="$1" 130 | # Get architectures for current target binary 131 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 132 | # Intersect them with the architectures we are building for 133 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 134 | # If there are no archs supported by this binary then warn the user 135 | if [[ -z "$intersected_archs" ]]; then 136 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 137 | STRIP_BINARY_RETVAL=0 138 | return 139 | fi 140 | stripped="" 141 | for arch in $binary_archs; do 142 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 143 | # Strip non-valid architectures in-place 144 | lipo -remove "$arch" -output "$binary" "$binary" 145 | stripped="$stripped $arch" 146 | fi 147 | done 148 | if [[ "$stripped" ]]; then 149 | echo "Stripped $binary of architectures:$stripped" 150 | fi 151 | STRIP_BINARY_RETVAL=1 152 | } 153 | 154 | 155 | if [[ "$CONFIGURATION" == "Debug" ]]; then 156 | install_framework "${BUILT_PRODUCTS_DIR}/PullToReach/PullToReach.framework" 157 | fi 158 | if [[ "$CONFIGURATION" == "Release" ]]; then 159 | install_framework "${BUILT_PRODUCTS_DIR}/PullToReach/PullToReach.framework" 160 | fi 161 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 162 | wait 163 | fi 164 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_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_PullToReach_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_PullToReach_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/PullToReach" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/PullToReach/PullToReach.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "PullToReach" -framework "UIKit" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_PullToReach_Example { 2 | umbrella header "Pods-PullToReach_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/PullToReach" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/PullToReach/PullToReach.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "PullToReach" -framework "UIKit" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PullToReach/PullToReach-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PullToReach/PullToReach-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_PullToReach : NSObject 3 | @end 4 | @implementation PodsDummy_PullToReach 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PullToReach/PullToReach-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/PullToReach/PullToReach-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 PullToReachVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char PullToReachVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PullToReach/PullToReach.modulemap: -------------------------------------------------------------------------------- 1 | framework module PullToReach { 2 | umbrella header "PullToReach-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PullToReach/PullToReach.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/PullToReach 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "UIKit" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example/PullToReach.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 11 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 12 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 13 | 9B4FB70D228B4AC000136603 /* TeamMember.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B4FB70C228B4AC000136603 /* TeamMember.swift */; }; 14 | D69CC6758A7FC75D9D5412F9 /* Pods_PullToReach_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 547CA4005348FFAD0D1F4C56 /* Pods_PullToReach_Example.framework */; }; 15 | F6FAF4112271B94500664A86 /* AddViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6FAF40E2271B94500664A86 /* AddViewController.swift */; }; 16 | F6FAF4142271B94B00664A86 /* TeamMemberDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6FAF4132271B94B00664A86 /* TeamMemberDataSource.swift */; }; 17 | F6FAF4192271C79400664A86 /* TeamMembersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6FAF4172271B96200664A86 /* TeamMembersViewController.swift */; }; 18 | F6FAF41A2271C79700664A86 /* ProfileViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6FAF4182271B96200664A86 /* ProfileViewController.swift */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXFileReference section */ 22 | 03E1AC666BE4887859DFBECA /* Pods-PullToReach_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PullToReach_Tests.debug.xcconfig"; path = "Target Support Files/Pods-PullToReach_Tests/Pods-PullToReach_Tests.debug.xcconfig"; sourceTree = ""; }; 23 | 09A954EA5BB2BA35C8AE90AA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 24 | 0DFF713A9FBF2B888B7306BC /* PullToReach.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = PullToReach.podspec; path = ../PullToReach.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 25 | 2B9D0050ED87B58C71DFC476 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 26 | 547CA4005348FFAD0D1F4C56 /* Pods_PullToReach_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PullToReach_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 27 | 607FACD01AFB9204008FA782 /* PullToReach_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PullToReach_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 28 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 29 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 30 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 31 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 32 | 7FCD2A828D2DF7DAA5B19E1F /* Pods_PullToReach_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PullToReach_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 33 | 7FD1CDB93F6FA665FF33BEA0 /* Pods-PullToReach_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PullToReach_Example.release.xcconfig"; path = "Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example.release.xcconfig"; sourceTree = ""; }; 34 | 9B4FB70C228B4AC000136603 /* TeamMember.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TeamMember.swift; sourceTree = ""; }; 35 | D75CF7F9BC8E2C9EC99AE7B4 /* Pods-PullToReach_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PullToReach_Example.debug.xcconfig"; path = "Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example.debug.xcconfig"; sourceTree = ""; }; 36 | DC06F21EDD0E1F7CC6B26854 /* Pods-PullToReach_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PullToReach_Tests.release.xcconfig"; path = "Target Support Files/Pods-PullToReach_Tests/Pods-PullToReach_Tests.release.xcconfig"; sourceTree = ""; }; 37 | F6FAF40E2271B94500664A86 /* AddViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddViewController.swift; sourceTree = ""; }; 38 | F6FAF4132271B94B00664A86 /* TeamMemberDataSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TeamMemberDataSource.swift; sourceTree = ""; }; 39 | F6FAF4172271B96200664A86 /* TeamMembersViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TeamMembersViewController.swift; sourceTree = ""; }; 40 | F6FAF4182271B96200664A86 /* ProfileViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileViewController.swift; sourceTree = ""; }; 41 | /* End PBXFileReference section */ 42 | 43 | /* Begin PBXFrameworksBuildPhase section */ 44 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 45 | isa = PBXFrameworksBuildPhase; 46 | buildActionMask = 2147483647; 47 | files = ( 48 | D69CC6758A7FC75D9D5412F9 /* Pods_PullToReach_Example.framework in Frameworks */, 49 | ); 50 | runOnlyForDeploymentPostprocessing = 0; 51 | }; 52 | /* End PBXFrameworksBuildPhase section */ 53 | 54 | /* Begin PBXGroup section */ 55 | 607FACC71AFB9204008FA782 = { 56 | isa = PBXGroup; 57 | children = ( 58 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 59 | 607FACD21AFB9204008FA782 /* Example for PullToReach */, 60 | 607FACD11AFB9204008FA782 /* Products */, 61 | BBFCF51312AFA5FB44BE2E88 /* Pods */, 62 | ACEB979AF411C9D06E53F774 /* Frameworks */, 63 | ); 64 | sourceTree = ""; 65 | }; 66 | 607FACD11AFB9204008FA782 /* Products */ = { 67 | isa = PBXGroup; 68 | children = ( 69 | 607FACD01AFB9204008FA782 /* PullToReach_Example.app */, 70 | ); 71 | name = Products; 72 | sourceTree = ""; 73 | }; 74 | 607FACD21AFB9204008FA782 /* Example for PullToReach */ = { 75 | isa = PBXGroup; 76 | children = ( 77 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 78 | F6FAF4162271B96200664A86 /* View Controllers */, 79 | F6FAF4152271B95A00664A86 /* Model */, 80 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 81 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 82 | 607FACD31AFB9204008FA782 /* Supporting Files */, 83 | ); 84 | name = "Example for PullToReach"; 85 | path = PullToReach; 86 | sourceTree = ""; 87 | }; 88 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 89 | isa = PBXGroup; 90 | children = ( 91 | 607FACD41AFB9204008FA782 /* Info.plist */, 92 | ); 93 | name = "Supporting Files"; 94 | sourceTree = ""; 95 | }; 96 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 97 | isa = PBXGroup; 98 | children = ( 99 | 0DFF713A9FBF2B888B7306BC /* PullToReach.podspec */, 100 | 2B9D0050ED87B58C71DFC476 /* README.md */, 101 | 09A954EA5BB2BA35C8AE90AA /* LICENSE */, 102 | ); 103 | name = "Podspec Metadata"; 104 | sourceTree = ""; 105 | }; 106 | ACEB979AF411C9D06E53F774 /* Frameworks */ = { 107 | isa = PBXGroup; 108 | children = ( 109 | 547CA4005348FFAD0D1F4C56 /* Pods_PullToReach_Example.framework */, 110 | 7FCD2A828D2DF7DAA5B19E1F /* Pods_PullToReach_Tests.framework */, 111 | ); 112 | name = Frameworks; 113 | sourceTree = ""; 114 | }; 115 | BBFCF51312AFA5FB44BE2E88 /* Pods */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | D75CF7F9BC8E2C9EC99AE7B4 /* Pods-PullToReach_Example.debug.xcconfig */, 119 | 7FD1CDB93F6FA665FF33BEA0 /* Pods-PullToReach_Example.release.xcconfig */, 120 | 03E1AC666BE4887859DFBECA /* Pods-PullToReach_Tests.debug.xcconfig */, 121 | DC06F21EDD0E1F7CC6B26854 /* Pods-PullToReach_Tests.release.xcconfig */, 122 | ); 123 | path = Pods; 124 | sourceTree = ""; 125 | }; 126 | F6FAF4152271B95A00664A86 /* Model */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | F6FAF4132271B94B00664A86 /* TeamMemberDataSource.swift */, 130 | 9B4FB70C228B4AC000136603 /* TeamMember.swift */, 131 | ); 132 | name = Model; 133 | sourceTree = ""; 134 | }; 135 | F6FAF4162271B96200664A86 /* View Controllers */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | F6FAF4172271B96200664A86 /* TeamMembersViewController.swift */, 139 | F6FAF40E2271B94500664A86 /* AddViewController.swift */, 140 | F6FAF4182271B96200664A86 /* ProfileViewController.swift */, 141 | ); 142 | name = "View Controllers"; 143 | sourceTree = ""; 144 | }; 145 | /* End PBXGroup section */ 146 | 147 | /* Begin PBXNativeTarget section */ 148 | 607FACCF1AFB9204008FA782 /* PullToReach_Example */ = { 149 | isa = PBXNativeTarget; 150 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "PullToReach_Example" */; 151 | buildPhases = ( 152 | 3FA4FAC72680C1F7EEEBCD20 /* [CP] Check Pods Manifest.lock */, 153 | 607FACCC1AFB9204008FA782 /* Sources */, 154 | 607FACCD1AFB9204008FA782 /* Frameworks */, 155 | 607FACCE1AFB9204008FA782 /* Resources */, 156 | 4BE82417301026F4979BD78C /* [CP] Embed Pods Frameworks */, 157 | ); 158 | buildRules = ( 159 | ); 160 | dependencies = ( 161 | ); 162 | name = PullToReach_Example; 163 | productName = PullToReach; 164 | productReference = 607FACD01AFB9204008FA782 /* PullToReach_Example.app */; 165 | productType = "com.apple.product-type.application"; 166 | }; 167 | /* End PBXNativeTarget section */ 168 | 169 | /* Begin PBXProject section */ 170 | 607FACC81AFB9204008FA782 /* Project object */ = { 171 | isa = PBXProject; 172 | attributes = { 173 | LastSwiftUpdateCheck = 0830; 174 | LastUpgradeCheck = 1020; 175 | ORGANIZATIONNAME = CocoaPods; 176 | TargetAttributes = { 177 | 607FACCF1AFB9204008FA782 = { 178 | CreatedOnToolsVersion = 6.3.1; 179 | DevelopmentTeam = 77E79NGPCV; 180 | LastSwiftMigration = 1020; 181 | }; 182 | }; 183 | }; 184 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "PullToReach" */; 185 | compatibilityVersion = "Xcode 3.2"; 186 | developmentRegion = English; 187 | hasScannedForEncodings = 0; 188 | knownRegions = ( 189 | English, 190 | en, 191 | Base, 192 | ); 193 | mainGroup = 607FACC71AFB9204008FA782; 194 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 195 | projectDirPath = ""; 196 | projectRoot = ""; 197 | targets = ( 198 | 607FACCF1AFB9204008FA782 /* PullToReach_Example */, 199 | ); 200 | }; 201 | /* End PBXProject section */ 202 | 203 | /* Begin PBXResourcesBuildPhase section */ 204 | 607FACCE1AFB9204008FA782 /* Resources */ = { 205 | isa = PBXResourcesBuildPhase; 206 | buildActionMask = 2147483647; 207 | files = ( 208 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 209 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 210 | ); 211 | runOnlyForDeploymentPostprocessing = 0; 212 | }; 213 | /* End PBXResourcesBuildPhase section */ 214 | 215 | /* Begin PBXShellScriptBuildPhase section */ 216 | 3FA4FAC72680C1F7EEEBCD20 /* [CP] Check Pods Manifest.lock */ = { 217 | isa = PBXShellScriptBuildPhase; 218 | buildActionMask = 2147483647; 219 | files = ( 220 | ); 221 | inputFileListPaths = ( 222 | ); 223 | inputPaths = ( 224 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 225 | "${PODS_ROOT}/Manifest.lock", 226 | ); 227 | name = "[CP] Check Pods Manifest.lock"; 228 | outputFileListPaths = ( 229 | ); 230 | outputPaths = ( 231 | "$(DERIVED_FILE_DIR)/Pods-PullToReach_Example-checkManifestLockResult.txt", 232 | ); 233 | runOnlyForDeploymentPostprocessing = 0; 234 | shellPath = /bin/sh; 235 | 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"; 236 | showEnvVarsInLog = 0; 237 | }; 238 | 4BE82417301026F4979BD78C /* [CP] Embed Pods Frameworks */ = { 239 | isa = PBXShellScriptBuildPhase; 240 | buildActionMask = 2147483647; 241 | files = ( 242 | ); 243 | inputFileListPaths = ( 244 | ); 245 | inputPaths = ( 246 | "${PODS_ROOT}/Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example-frameworks.sh", 247 | "${BUILT_PRODUCTS_DIR}/PullToReach/PullToReach.framework", 248 | ); 249 | name = "[CP] Embed Pods Frameworks"; 250 | outputFileListPaths = ( 251 | ); 252 | outputPaths = ( 253 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PullToReach.framework", 254 | ); 255 | runOnlyForDeploymentPostprocessing = 0; 256 | shellPath = /bin/sh; 257 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PullToReach_Example/Pods-PullToReach_Example-frameworks.sh\"\n"; 258 | showEnvVarsInLog = 0; 259 | }; 260 | /* End PBXShellScriptBuildPhase section */ 261 | 262 | /* Begin PBXSourcesBuildPhase section */ 263 | 607FACCC1AFB9204008FA782 /* Sources */ = { 264 | isa = PBXSourcesBuildPhase; 265 | buildActionMask = 2147483647; 266 | files = ( 267 | F6FAF4112271B94500664A86 /* AddViewController.swift in Sources */, 268 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 269 | 9B4FB70D228B4AC000136603 /* TeamMember.swift in Sources */, 270 | F6FAF41A2271C79700664A86 /* ProfileViewController.swift in Sources */, 271 | F6FAF4142271B94B00664A86 /* TeamMemberDataSource.swift in Sources */, 272 | F6FAF4192271C79400664A86 /* TeamMembersViewController.swift in Sources */, 273 | ); 274 | runOnlyForDeploymentPostprocessing = 0; 275 | }; 276 | /* End PBXSourcesBuildPhase section */ 277 | 278 | /* Begin PBXVariantGroup section */ 279 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 280 | isa = PBXVariantGroup; 281 | children = ( 282 | 607FACDF1AFB9204008FA782 /* Base */, 283 | ); 284 | name = LaunchScreen.xib; 285 | sourceTree = ""; 286 | }; 287 | /* End PBXVariantGroup section */ 288 | 289 | /* Begin XCBuildConfiguration section */ 290 | 607FACED1AFB9204008FA782 /* Debug */ = { 291 | isa = XCBuildConfiguration; 292 | buildSettings = { 293 | ALWAYS_SEARCH_USER_PATHS = NO; 294 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 295 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 296 | CLANG_CXX_LIBRARY = "libc++"; 297 | CLANG_ENABLE_MODULES = YES; 298 | CLANG_ENABLE_OBJC_ARC = YES; 299 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 300 | CLANG_WARN_BOOL_CONVERSION = YES; 301 | CLANG_WARN_COMMA = YES; 302 | CLANG_WARN_CONSTANT_CONVERSION = YES; 303 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 304 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 305 | CLANG_WARN_EMPTY_BODY = YES; 306 | CLANG_WARN_ENUM_CONVERSION = YES; 307 | CLANG_WARN_INFINITE_RECURSION = YES; 308 | CLANG_WARN_INT_CONVERSION = YES; 309 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 310 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 311 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 312 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 313 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 314 | CLANG_WARN_STRICT_PROTOTYPES = YES; 315 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 316 | CLANG_WARN_UNREACHABLE_CODE = YES; 317 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 318 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 319 | COPY_PHASE_STRIP = NO; 320 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 321 | ENABLE_STRICT_OBJC_MSGSEND = YES; 322 | ENABLE_TESTABILITY = YES; 323 | GCC_C_LANGUAGE_STANDARD = gnu99; 324 | GCC_DYNAMIC_NO_PIC = NO; 325 | GCC_NO_COMMON_BLOCKS = YES; 326 | GCC_OPTIMIZATION_LEVEL = 0; 327 | GCC_PREPROCESSOR_DEFINITIONS = ( 328 | "DEBUG=1", 329 | "$(inherited)", 330 | ); 331 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 332 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 333 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 334 | GCC_WARN_UNDECLARED_SELECTOR = YES; 335 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 336 | GCC_WARN_UNUSED_FUNCTION = YES; 337 | GCC_WARN_UNUSED_VARIABLE = YES; 338 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 339 | MTL_ENABLE_DEBUG_INFO = YES; 340 | ONLY_ACTIVE_ARCH = YES; 341 | SDKROOT = iphoneos; 342 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 343 | }; 344 | name = Debug; 345 | }; 346 | 607FACEE1AFB9204008FA782 /* Release */ = { 347 | isa = XCBuildConfiguration; 348 | buildSettings = { 349 | ALWAYS_SEARCH_USER_PATHS = NO; 350 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 351 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 352 | CLANG_CXX_LIBRARY = "libc++"; 353 | CLANG_ENABLE_MODULES = YES; 354 | CLANG_ENABLE_OBJC_ARC = YES; 355 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 356 | CLANG_WARN_BOOL_CONVERSION = YES; 357 | CLANG_WARN_COMMA = YES; 358 | CLANG_WARN_CONSTANT_CONVERSION = YES; 359 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 360 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 361 | CLANG_WARN_EMPTY_BODY = YES; 362 | CLANG_WARN_ENUM_CONVERSION = YES; 363 | CLANG_WARN_INFINITE_RECURSION = YES; 364 | CLANG_WARN_INT_CONVERSION = YES; 365 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 366 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 367 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 368 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 369 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 370 | CLANG_WARN_STRICT_PROTOTYPES = YES; 371 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 372 | CLANG_WARN_UNREACHABLE_CODE = YES; 373 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 374 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 375 | COPY_PHASE_STRIP = NO; 376 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 377 | ENABLE_NS_ASSERTIONS = NO; 378 | ENABLE_STRICT_OBJC_MSGSEND = YES; 379 | GCC_C_LANGUAGE_STANDARD = gnu99; 380 | GCC_NO_COMMON_BLOCKS = YES; 381 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 382 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 383 | GCC_WARN_UNDECLARED_SELECTOR = YES; 384 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 385 | GCC_WARN_UNUSED_FUNCTION = YES; 386 | GCC_WARN_UNUSED_VARIABLE = YES; 387 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 388 | MTL_ENABLE_DEBUG_INFO = NO; 389 | SDKROOT = iphoneos; 390 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 391 | VALIDATE_PRODUCT = YES; 392 | }; 393 | name = Release; 394 | }; 395 | 607FACF01AFB9204008FA782 /* Debug */ = { 396 | isa = XCBuildConfiguration; 397 | baseConfigurationReference = D75CF7F9BC8E2C9EC99AE7B4 /* Pods-PullToReach_Example.debug.xcconfig */; 398 | buildSettings = { 399 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 400 | DEVELOPMENT_TEAM = 77E79NGPCV; 401 | INFOPLIST_FILE = PullToReach/Info.plist; 402 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 403 | MODULE_NAME = ExampleApp; 404 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 405 | PRODUCT_NAME = "$(TARGET_NAME)"; 406 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 407 | SWIFT_VERSION = 4.0; 408 | }; 409 | name = Debug; 410 | }; 411 | 607FACF11AFB9204008FA782 /* Release */ = { 412 | isa = XCBuildConfiguration; 413 | baseConfigurationReference = 7FD1CDB93F6FA665FF33BEA0 /* Pods-PullToReach_Example.release.xcconfig */; 414 | buildSettings = { 415 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 416 | DEVELOPMENT_TEAM = 77E79NGPCV; 417 | INFOPLIST_FILE = PullToReach/Info.plist; 418 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 419 | MODULE_NAME = ExampleApp; 420 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 421 | PRODUCT_NAME = "$(TARGET_NAME)"; 422 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 423 | SWIFT_VERSION = 4.0; 424 | }; 425 | name = Release; 426 | }; 427 | /* End XCBuildConfiguration section */ 428 | 429 | /* Begin XCConfigurationList section */ 430 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "PullToReach" */ = { 431 | isa = XCConfigurationList; 432 | buildConfigurations = ( 433 | 607FACED1AFB9204008FA782 /* Debug */, 434 | 607FACEE1AFB9204008FA782 /* Release */, 435 | ); 436 | defaultConfigurationIsVisible = 0; 437 | defaultConfigurationName = Release; 438 | }; 439 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "PullToReach_Example" */ = { 440 | isa = XCConfigurationList; 441 | buildConfigurations = ( 442 | 607FACF01AFB9204008FA782 /* Debug */, 443 | 607FACF11AFB9204008FA782 /* Release */, 444 | ); 445 | defaultConfigurationIsVisible = 0; 446 | defaultConfigurationName = Release; 447 | }; 448 | /* End XCConfigurationList section */ 449 | }; 450 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 451 | } 452 | -------------------------------------------------------------------------------- /Example/PullToReach.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/PullToReach.xcodeproj/xcshareddata/xcschemes/PullToReach-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Example/PullToReach.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/PullToReach.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/PullToReach/AddViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AddViewController.swift 3 | // PullToReach 4 | // 5 | // Created by Stefan Kofler on 17.02.19. 6 | // Copyright © 2019 QuickBird Studios GmbH. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import PullToReach 11 | 12 | class AddViewController: UITableViewController, PullToReach { 13 | 14 | // MARK: - Views 15 | 16 | private lazy var refreshBarButtonItem = 17 | UIBarButtonItem(image: UIImage(named: "close"), style: .plain, 18 | target: self, action: #selector(closeView)) 19 | 20 | // MARK: - Overrides 21 | 22 | override func viewDidLoad() { 23 | super.viewDidLoad() 24 | 25 | self.title = "Add new item" 26 | self.view.backgroundColor = .white 27 | 28 | self.navigationController?.navigationBar.prefersLargeTitles = true 29 | self.navigationItem.largeTitleDisplayMode = .always 30 | 31 | self.navigationItem.rightBarButtonItems = [refreshBarButtonItem] 32 | 33 | self.activatePullToReach(on: navigationItem, highlightColor: UIColor.red.withAlphaComponent(0.25)) 34 | } 35 | 36 | // MARK: Button actions 37 | 38 | @objc func closeView() { 39 | self.navigationController?.dismiss(animated: true, completion: nil) 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /Example/PullToReach/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // PullToReach 4 | // 5 | // Created by grafele on 04/25/2019. 6 | // Copyright (c) 2019 grafele. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | // MARK: - Stored properties 15 | 16 | let window = UIWindow(frame: UIScreen.main.bounds) 17 | 18 | // MARK: - UIApplicationDelegate 19 | 20 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 21 | 22 | window.rootViewController = UINavigationController(rootViewController: TeamMembersViewController()) 23 | window.makeKeyAndVisible() 24 | 25 | UINavigationBar.appearance().tintColor = .black 26 | UINavigationBar.appearance().prefersLargeTitles = true 27 | 28 | return true 29 | } 30 | 31 | } 32 | 33 | -------------------------------------------------------------------------------- /Example/PullToReach/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | }, 88 | { 89 | "idiom" : "ios-marketing", 90 | "size" : "1024x1024", 91 | "scale" : "1x" 92 | } 93 | ], 94 | "info" : { 95 | "version" : 1, 96 | "author" : "xcode" 97 | } 98 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Balazs_Toth.imageset/Balazs_Toth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Balazs_Toth.imageset/Balazs_Toth.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Balazs_Toth.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Balazs_Toth.jpg" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Eduardo_Prado.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Eduardo_Prado.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Eduardo_Prado.imageset/Eduardo_Prado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Eduardo_Prado.imageset/Eduardo_Prado.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Ghulam_Nasir.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Ghulam_Nasir.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Ghulam_Nasir.imageset/Ghulam_Nasir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Ghulam_Nasir.imageset/Ghulam_Nasir.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Julian_Bissekkou.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Julian_Bissekkou.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Julian_Bissekkou.imageset/Julian_Bissekkou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Julian_Bissekkou.imageset/Julian_Bissekkou.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Klaus_Niedermair.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Klaus_Niedermair.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Klaus_Niedermair.imageset/Klaus_Niedermair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Klaus_Niedermair.imageset/Klaus_Niedermair.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Lizzie_Studeneer.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Lizzie_Studeneer.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Lizzie_Studeneer.imageset/Lizzie_Studeneer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Lizzie_Studeneer.imageset/Lizzie_Studeneer.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Malte_Bucksch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Malte_Bucksch.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Malte_Bucksch.imageset/Malte_Bucksch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Malte_Bucksch.imageset/Malte_Bucksch.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Mathias_Quintero.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Mathias_Quintero.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Mathias_Quintero.imageset/Mathias_Quintero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Mathias_Quintero.imageset/Mathias_Quintero.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Michael_Schlicker.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Michael_Schlicker.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Michael_Schlicker.imageset/Michael_Schlicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Michael_Schlicker.imageset/Michael_Schlicker.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Nikolaos_Tzioras.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Nikolaos_Tzioras.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Nikolaos_Tzioras.imageset/Nikolaos_Tzioras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Nikolaos_Tzioras.imageset/Nikolaos_Tzioras.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Patrick_Sattler.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Patrick_Sattler.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Patrick_Sattler.imageset/Patrick_Sattler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Patrick_Sattler.imageset/Patrick_Sattler.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Paul_Kraft.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Paul_Kraft.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Paul_Kraft.imageset/Paul_Kraft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Paul_Kraft.imageset/Paul_Kraft.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Quirin_Schweigert.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Quirin_Schweigert.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Quirin_Schweigert.imageset/Quirin_Schweigert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Quirin_Schweigert.imageset/Quirin_Schweigert.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Sebastian_Sellmair.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Sebastian_Sellmair.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Sebastian_Sellmair.imageset/Sebastian_Sellmair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Sebastian_Sellmair.imageset/Sebastian_Sellmair.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Stefan_Kofler.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Stefan_Kofler.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/Stefan_Kofler.imageset/Stefan_Kofler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/Stefan_Kofler.imageset/Stefan_Kofler.jpg -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/add.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "baseline_add_black_24pt_1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "baseline_add_black_24pt_2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "baseline_add_black_24pt_3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/add.imageset/baseline_add_black_24pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/add.imageset/baseline_add_black_24pt_1x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/add.imageset/baseline_add_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/add.imageset/baseline_add_black_24pt_2x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/add.imageset/baseline_add_black_24pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/add.imageset/baseline_add_black_24pt_3x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/add_big.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "baseline_add_black_36pt_1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "baseline_add_black_36pt_2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "baseline_add_black_36pt_3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/add_big.imageset/baseline_add_black_36pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/add_big.imageset/baseline_add_black_36pt_1x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/add_big.imageset/baseline_add_black_36pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/add_big.imageset/baseline_add_black_36pt_2x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/add_big.imageset/baseline_add_black_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/add_big.imageset/baseline_add_black_36pt_3x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "baseline_close_black_24pt_1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "baseline_close_black_24pt_2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "baseline_close_black_24pt_3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/close.imageset/baseline_close_black_24pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/close.imageset/baseline_close_black_24pt_1x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/close.imageset/baseline_close_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/close.imageset/baseline_close_black_24pt_2x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/close.imageset/baseline_close_black_24pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/close.imageset/baseline_close_black_24pt_3x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/close_big.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "baseline_close_black_36pt_1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "baseline_close_black_36pt_2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "baseline_close_black_36pt_3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/close_big.imageset/baseline_close_black_36pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/close_big.imageset/baseline_close_black_36pt_1x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/close_big.imageset/baseline_close_black_36pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/close_big.imageset/baseline_close_black_36pt_2x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/close_big.imageset/baseline_close_black_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/close_big.imageset/baseline_close_black_36pt_3x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/filter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "baseline_filter_list_black_24pt_1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "baseline_filter_list_black_24pt_2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "baseline_filter_list_black_24pt_3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/filter.imageset/baseline_filter_list_black_24pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/filter.imageset/baseline_filter_list_black_24pt_1x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/filter.imageset/baseline_filter_list_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/filter.imageset/baseline_filter_list_black_24pt_2x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/filter.imageset/baseline_filter_list_black_24pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/filter.imageset/baseline_filter_list_black_24pt_3x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/filter_big.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "baseline_filter_list_black_36pt_1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "baseline_filter_list_black_36pt_2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "baseline_filter_list_black_36pt_3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/filter_big.imageset/baseline_filter_list_black_36pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/filter_big.imageset/baseline_filter_list_black_36pt_1x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/filter_big.imageset/baseline_filter_list_black_36pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/filter_big.imageset/baseline_filter_list_black_36pt_2x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/filter_big.imageset/baseline_filter_list_black_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/filter_big.imageset/baseline_filter_list_black_36pt_3x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/refresh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "baseline_refresh_black_24pt_1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "baseline_refresh_black_24pt_2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "baseline_refresh_black_24pt_3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/refresh.imageset/baseline_refresh_black_24pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/refresh.imageset/baseline_refresh_black_24pt_1x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/refresh.imageset/baseline_refresh_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/refresh.imageset/baseline_refresh_black_24pt_2x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/refresh.imageset/baseline_refresh_black_24pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/refresh.imageset/baseline_refresh_black_24pt_3x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "baseline_search_black_24pt_1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "baseline_search_black_24pt_2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "baseline_search_black_24pt_3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/search.imageset/baseline_search_black_24pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/search.imageset/baseline_search_black_24pt_1x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/search.imageset/baseline_search_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/search.imageset/baseline_search_black_24pt_2x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/search.imageset/baseline_search_black_24pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/search.imageset/baseline_search_black_24pt_3x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/search_big.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "baseline_search_black_36pt_1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "baseline_search_black_36pt_2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "baseline_search_black_36pt_3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/search_big.imageset/baseline_search_black_36pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/search_big.imageset/baseline_search_black_36pt_1x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/search_big.imageset/baseline_search_black_36pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/search_big.imageset/baseline_search_black_36pt_2x.png -------------------------------------------------------------------------------- /Example/PullToReach/Images.xcassets/search_big.imageset/baseline_search_black_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/Example/PullToReach/Images.xcassets/search_big.imageset/baseline_search_black_36pt_3x.png -------------------------------------------------------------------------------- /Example/PullToReach/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Example/PullToReach/ProfileViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProfileViewController.swift 3 | // PullToReach 4 | // 5 | // Created by Stefan Kofler on 18.02.19. 6 | // Copyright © 2019 QuickBird Studios GmbH. All rights reserved. 7 | // 8 | 9 | import PullToReach 10 | 11 | import UIKit 12 | 13 | class ProfileViewController: UITableViewController, PullToReach { 14 | 15 | // MARK: - Overrides 16 | 17 | override func viewDidLoad() { 18 | super.viewDidLoad() 19 | 20 | self.title = "Profile" 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /Example/PullToReach/TeamMember.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TeamMember.swift 3 | // PullToReach_Example 4 | // 5 | // Created by Paul Kraft on 14.05.19. 6 | // Copyright © 2019 CocoaPods. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import UIKit.UIImage 11 | 12 | struct TeamMember { 13 | 14 | // MARK: - Stored properties 15 | 16 | let firstName: String 17 | let lastName: String 18 | let imageName: String 19 | 20 | // MARK: - Computed properties 21 | 22 | var email: String { 23 | return "\(firstName.lowercased()).\(lastName.lowercased())@quickbirdstudios.com" 24 | } 25 | 26 | var image: UIImage? { 27 | return UIImage(named: imageName) 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /Example/PullToReach/TeamMemberDataSource.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TeamMemberDataSource.swift 3 | // PullToReach 4 | // 5 | // Created by Stefan Kofler on 17.02.19. 6 | // Copyright © 2019 QuickBird Studios GmbH. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | private let allTeamMembers = [ 12 | TeamMember(firstName: "Stefan", lastName: "Kofler", imageName: "Stefan_Kofler"), 13 | TeamMember(firstName: "Malte", lastName: "Bucksch", imageName: "Malte_Bucksch"), 14 | TeamMember(firstName: "Sebastian", lastName: "Sellmair", imageName: "Sebastian_Sellmair"), 15 | TeamMember(firstName: "Julian", lastName: "Bissekkou", imageName: "Julian_Bissekkou"), 16 | TeamMember(firstName: "Klaus", lastName: "Niedermair", imageName: "Klaus_Niedermair"), 17 | TeamMember(firstName: "Ghulam", lastName: "Nasir", imageName: "Ghulam_Nasir"), 18 | TeamMember(firstName: "Nikolaos", lastName: "Tzioras", imageName: "Nikolaos_Tzioras"), 19 | TeamMember(firstName: "Mathias", lastName: "Quintero", imageName: "Mathias_Quintero"), 20 | TeamMember(firstName: "Michael", lastName: "Schlicker", imageName: "Michael_Schlicker"), 21 | TeamMember(firstName: "Patrick", lastName: "Sattler", imageName: "Patrick_Sattler"), 22 | TeamMember(firstName: "Paul", lastName: "Kraft", imageName: "Paul_Kraft"), 23 | TeamMember(firstName: "Balazs", lastName: "Toth", imageName: "Balazs_Toth"), 24 | TeamMember(firstName: "Lizzie", lastName: "Studeneer", imageName: "Lizzie_Studeneer"), 25 | 26 | ] 27 | 28 | class TeamMembersDataSource: NSObject, UITableViewDataSource { 29 | 30 | // MARK: - Stored properties 31 | 32 | private let teamMembers = allTeamMembers.shuffled() 33 | 34 | // MARK: - UITableViewDataSource 35 | 36 | func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 37 | return teamMembers.count 38 | } 39 | 40 | func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 41 | let cell = UITableViewCell(style: .subtitle, reuseIdentifier: "cell") 42 | let teamMember = teamMembers[indexPath.row] 43 | 44 | cell.textLabel?.text = "\(teamMember.firstName) \(teamMember.lastName)" 45 | cell.detailTextLabel?.text = teamMember.email 46 | cell.imageView?.image = teamMember.image 47 | cell.accessoryType = .disclosureIndicator 48 | 49 | return cell 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /Example/PullToReach/TeamMembersViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MainViewController.swift 3 | // PullToReach 4 | // 5 | // Created by Stefan Kofler on 17.02.19. 6 | // Copyright © 2019 QuickBird Studios GmbH. All rights reserved. 7 | // 8 | 9 | import PullToReach 10 | import UIKit 11 | 12 | class TeamMembersViewController: UITableViewController, PullToReach { 13 | 14 | // MARK: - Views 15 | 16 | private lazy var addBarButtonItem = 17 | UIBarButtonItem(image: UIImage(named: "add"), style: .plain, 18 | target: self, action: #selector(addItem)) 19 | 20 | private lazy var searchBarButtonItem = 21 | UIBarButtonItem(image: UIImage(named: "search"), style: .plain, 22 | target: self, action: #selector(searchItems)) 23 | 24 | private lazy var refreshBarButtonItem = 25 | UIBarButtonItem(image: UIImage(named: "refresh"), style: .plain, 26 | target: self, action: #selector(reloadItems)) 27 | 28 | // MARK: - Stored properties 29 | 30 | private let searchController = UISearchController(searchResultsController: nil) 31 | private var dataSource = TeamMembersDataSource() 32 | 33 | // MARK: - Overrides 34 | 35 | override func viewDidLoad() { 36 | super.viewDidLoad() 37 | 38 | self.title = "Team members" 39 | self.view.backgroundColor = .white 40 | 41 | self.tableView.tableHeaderView = searchController.searchBar 42 | self.tableView.dataSource = dataSource 43 | 44 | self.navigationController?.navigationBar.prefersLargeTitles = true 45 | self.navigationItem.largeTitleDisplayMode = .always 46 | 47 | self.navigationItem.rightBarButtonItems = [ 48 | addBarButtonItem, 49 | searchBarButtonItem, 50 | refreshBarButtonItem 51 | ] 52 | 53 | self.activatePullToReach(on: navigationItem) 54 | } 55 | 56 | // MARK: Button actions 57 | 58 | @objc func addItem() { 59 | let addViewController = AddViewController() 60 | let navigationController = UINavigationController(rootViewController: addViewController) 61 | self.navigationController?.present(navigationController, animated: true, completion: nil) 62 | } 63 | 64 | @objc func searchItems() { 65 | searchController.searchBar.becomeFirstResponder() 66 | } 67 | 68 | @objc func reloadItems() { 69 | let barButtonItem = self.navigationItem.rightBarButtonItems?[2] 70 | guard let view = barButtonItem?.value(forKey: "view") as? UIView else { return } 71 | 72 | view.transform = CGAffineTransform(rotationAngle: CGFloat()) 73 | 74 | let rotationAnimation = CABasicAnimation(keyPath: "transform.rotation.z") 75 | rotationAnimation.toValue = NSNumber(value: Double.pi * 2.0) 76 | rotationAnimation.duration = 0.6 77 | rotationAnimation.repeatCount = 2.0 78 | 79 | view.layer.add(rotationAnimation, forKey: "rotationAnimation") 80 | 81 | DispatchQueue.main.asyncAfter(deadline: .now() + 1.2) { [weak self] in 82 | self?.dataSource = TeamMembersDataSource() 83 | self?.tableView.dataSource = self?.dataSource 84 | self?.tableView.reloadSections(IndexSet(integer: 0), with: .automatic) 85 | } 86 | } 87 | 88 | } 89 | 90 | // MARK: - UITableViewDelegate 91 | 92 | extension TeamMembersViewController { 93 | 94 | override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 95 | let profileViewController = ProfileViewController() 96 | self.navigationController?.pushViewController(profileViewController, animated: true) 97 | 98 | tableView.deselectRow(at: indexPath, animated: true) 99 | } 100 | 101 | } 102 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 grafele 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 | -------------------------------------------------------------------------------- /PullToReach.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint PullToReach.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 = 'PullToReach' 11 | s.version = '0.1.2' 12 | s.summary = 'PullToReach is a simple drag-and-drop solution for implementing pull-to-reach.' 13 | s.module_name = 'PullToReach' 14 | 15 | # This description is used to generate tags and improve search results. 16 | # * Think: What does it do? Why did you write it? What is the focus? 17 | # * Try to keep it short, snappy and to the point. 18 | # * Write the description between the DESC delimiters below. 19 | # * Finally, don't worry about the indent, CocoaPods strips it! 20 | 21 | s.description = <<-DESC 22 | PullToReach is a simple drag-and-drop solution for implementing the pull-to-reach functionality seen in the music app Soor by Tanmay. This allows your users with big phones to reach the content on the top of the display easily. 23 | DESC 24 | 25 | 26 | s.homepage = 'https://github.com/quickbirdstudios/PullToReach' 27 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 28 | s.license = { :type => 'MIT', :file => 'LICENSE' } 29 | s.author = { 'Stefan Kofler' => 'stefan.kofler@quickbirdstudios.com' } 30 | s.source = { :git => 'https://github.com/quickbirdstudios/PullToReach.git', :tag => s.version.to_s } 31 | 32 | s.ios.deployment_target = '11.0' 33 | s.swift_version = '4.2' 34 | 35 | s.source_files = 'PullToReach/Classes/**/*' 36 | s.frameworks = 'UIKit' 37 | end 38 | -------------------------------------------------------------------------------- /PullToReach/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/PullToReach/Assets/.gitkeep -------------------------------------------------------------------------------- /PullToReach/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/PullToReach/Classes/.gitkeep -------------------------------------------------------------------------------- /PullToReach/Classes/PullToReach.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PullToReach.swift 3 | // PullToReach 4 | // 5 | // Created by Stefan Kofler on 17.02.19. 6 | // Copyright © 2019 QuickBird Studios GmbH. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | // MARK: - PullToReach 12 | 13 | public protocol PullToReach { 14 | var scrollView: UIScrollView { get } 15 | } 16 | 17 | public extension PullToReach { 18 | 19 | func activatePullToReach(affectedTargets: [PullToReachTarget], 20 | highlightColor: UIColor = UIColor.black.withAlphaComponent(0.1)) { 21 | let heavyFeedbackGenerator = UIImpactFeedbackGenerator() 22 | let lightFeedbackGenerator = UIImpactFeedbackGenerator(style: .light) 23 | 24 | var lastSelectedIndex: Int? 25 | 26 | let observer = PullToReachObserver(scrollView: scrollView) { scrollOffset, didRelease, isTracking in 27 | guard scrollOffset >= initialIgnoredOffset else { 28 | lastSelectedIndex = nil 29 | 30 | for target in affectedTargets { 31 | target.applyStyle(isHighlighted: false, highlightColor: highlightColor) 32 | target.removeHighlight() 33 | } 34 | 35 | return 36 | } 37 | 38 | let modifiedOffset = scrollOffset - initialIgnoredOffset 39 | 40 | let percent = min(modifiedOffset / maxOffset, 0.99) 41 | let currentSelectedIndex = Int(percent * CGFloat(affectedTargets.count)) 42 | 43 | if didRelease { 44 | affectedTargets[currentSelectedIndex].callSelector() 45 | heavyFeedbackGenerator.impactOccurred() 46 | } 47 | 48 | if lastSelectedIndex != currentSelectedIndex { 49 | lightFeedbackGenerator.impactOccurred() 50 | lastSelectedIndex = currentSelectedIndex 51 | } 52 | 53 | for (index, target) in affectedTargets.enumerated() { 54 | target.applyStyle(isHighlighted: index == currentSelectedIndex && isTracking, highlightColor: highlightColor) 55 | } 56 | } 57 | 58 | objc_setAssociatedObject(self, &AssociatedKeys.observer, observer, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC) 59 | } 60 | 61 | } 62 | 63 | // MARK: - PTRDirection 64 | 65 | public enum PTRDirection { 66 | case leftToRight 67 | case rightToLeft 68 | } 69 | 70 | @available(iOS 11.0, *) 71 | public extension PullToReach { 72 | 73 | func activatePullToReach(on navigationItem: UINavigationItem, 74 | direction: PTRDirection = .rightToLeft, 75 | highlightColor: UIColor = UIColor.black.withAlphaComponent(0.1)) { 76 | let barButtonItems: [UIBarButtonItem] 77 | 78 | switch direction { 79 | case .leftToRight: 80 | barButtonItems = (navigationItem.leftBarButtonItems ?? []) + (navigationItem.rightBarButtonItems ?? []).reversed() 81 | case .rightToLeft: 82 | barButtonItems = (navigationItem.rightBarButtonItems ?? []) + (navigationItem.leftBarButtonItems ?? []).reversed() 83 | } 84 | 85 | activatePullToReach(affectedTargets: barButtonItems, highlightColor: highlightColor) 86 | } 87 | 88 | } 89 | 90 | // MARK: - UITableViewController: PullToReach 91 | 92 | public extension PullToReach where Self: UITableViewController { 93 | var scrollView: UIScrollView { 94 | return tableView 95 | } 96 | } 97 | 98 | // MARK: Helpers 99 | 100 | private struct AssociatedKeys { 101 | static var observer: UInt8 = 0 102 | } 103 | 104 | private let maxOffset: CGFloat = 150 105 | private let initialIgnoredOffset: CGFloat = 30 106 | -------------------------------------------------------------------------------- /PullToReach/Classes/PullToReachObserver.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PullToReachObserver.swift 3 | // PullToReach 4 | // 5 | // Created by Stefan Kofler on 17.02.19. 6 | // Copyright © 2019 QuickBird Studios GmbH. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @available(iOS 11.0, *) 12 | class PullToReachObserver: NSObject { 13 | 14 | // MARK: - Stored properties 15 | 16 | private let scrollOffsetChanged: (CGFloat, Bool, Bool) -> Void 17 | private let scrollView: UIScrollView 18 | 19 | private var lastOffset: CGFloat = 0 20 | private var wasTracking: Bool = false 21 | 22 | // MARK: - Init 23 | 24 | init(scrollView: UIScrollView, scrollOffsetChanged: @escaping (CGFloat, Bool, Bool) -> Void) { 25 | self.scrollOffsetChanged = scrollOffsetChanged 26 | self.scrollView = scrollView 27 | 28 | super.init() 29 | 30 | scrollView.addObserver(self, forKeyPath: #keyPath(UIScrollView.contentOffset), options: .new, context: nil) 31 | } 32 | 33 | deinit { 34 | scrollView.removeObserver(self, forKeyPath: #keyPath(UIScrollView.contentOffset)) 35 | } 36 | 37 | // MARK: - Overrides 38 | 39 | override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) { 40 | guard let scrollView = object as? UIScrollView else { return } 41 | 42 | if keyPath == #keyPath(UIScrollView.contentOffset) { 43 | let scrollOffset = -(scrollView.contentOffset.y + scrollView.adjustedContentInset.top) 44 | 45 | if wasTracking && !scrollView.isTracking { 46 | self.scrollOffsetChanged(lastOffset, true, false) 47 | } else { 48 | self.scrollOffsetChanged(scrollOffset, false, scrollView.isTracking) 49 | } 50 | 51 | self.lastOffset = scrollOffset 52 | self.wasTracking = scrollView.isTracking 53 | } 54 | } 55 | 56 | } 57 | -------------------------------------------------------------------------------- /PullToReach/Classes/PullToReachTarget.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PullToReachTarget.swift 3 | // PullToReach 4 | // 5 | // Created by Stefan Kofler on 17.02.19. 6 | // Copyright © 2019 QuickBird Studios GmbH. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | // MARK: - PullToReachTarget 12 | 13 | public protocol PullToReachTarget { 14 | func callSelector() 15 | func applyStyle(isHighlighted: Bool, highlightColor: UIColor) 16 | func removeHighlight() 17 | } 18 | 19 | // MARK: - UIBarButtonItem: PullToReachTarget 20 | 21 | extension UIBarButtonItem: PullToReachTarget { 22 | 23 | public func callSelector() { 24 | if let actionSelector = self.action { 25 | _ = self.target?.perform(actionSelector) 26 | } 27 | } 28 | 29 | public func removeHighlight() { 30 | removeSelectionIndicatorView() 31 | } 32 | 33 | @objc 34 | open func applyStyle(isHighlighted: Bool, highlightColor: UIColor) { 35 | guard let view = self.value(forKey: "view") as? UIView else { return } 36 | guard let selectionIndicator = addSelectionIndicatorView() else { return } 37 | guard let navigationBar = view.firstSuperview(ofType: UINavigationBar.self) else { return } 38 | 39 | let scale: CGFloat = isHighlighted ? 1.25 : 1.0 40 | let selectionIndicatorSize: CGFloat = view.bounds.height * 1.2 41 | 42 | selectionIndicator.layer.cornerRadius = selectionIndicatorSize / 2.0 43 | selectionIndicator.bounds.size = CGSize(width: selectionIndicatorSize, height: selectionIndicatorSize) 44 | 45 | guard let nestedView = view.subviews.first else { return } 46 | let targetPosition1 = view.convert(nestedView.center, to: navigationBar) 47 | let targetPosition2 = view.superview?.convert(view.center, to: navigationBar) ?? .zero 48 | let targetPosition = CGPoint(x: (targetPosition1.x + targetPosition2.x) / 2.0, 49 | y: (targetPosition1.y + targetPosition2.y) / 2.0) 50 | 51 | if selectionIndicator.center == .zero { 52 | selectionIndicator.center = targetPosition 53 | } 54 | 55 | UIView.animate(withDuration: 0.3, delay: 0, usingSpringWithDamping: 0.8, 56 | initialSpringVelocity: 0.5, options: [], animations: { 57 | view.transform = CGAffineTransform(scaleX: scale, y: scale) 58 | 59 | if isHighlighted { 60 | selectionIndicator.backgroundColor = highlightColor 61 | selectionIndicator.center = targetPosition 62 | selectionIndicator.transform = .identity 63 | } 64 | }, completion: nil) 65 | } 66 | 67 | private func removeSelectionIndicatorView() { 68 | guard let view = self.value(forKey: "view") as? UIView else { return } 69 | guard let navigationBar = view.firstSuperview(ofType: UINavigationBar.self) else { return } 70 | navigationBar.firstSubview(ofType: SelectionIndicatorView.self)?.removeFromSuperview() 71 | } 72 | 73 | private func addSelectionIndicatorView() -> UIView? { 74 | guard let view = self.value(forKey: "view") as? UIView else { return nil } 75 | guard let navigationBar = view.firstSuperview(ofType: UINavigationBar.self) else { return nil } 76 | 77 | if let selectionIndicator = navigationBar.firstSubview(ofType: SelectionIndicatorView.self) { 78 | return selectionIndicator 79 | } else { 80 | let selectionIndicator = SelectionIndicatorView() 81 | selectionIndicator.clipsToBounds = true 82 | navigationBar.insertSubview(selectionIndicator, at: 1) 83 | return selectionIndicator 84 | } 85 | } 86 | 87 | } 88 | 89 | // MARK: - UIControl: PullToReachTarget 90 | 91 | extension UIControl: PullToReachTarget { 92 | 93 | public func callSelector() { 94 | let callees = allTargets.flatMap { target -> [(NSObject, String)] in 95 | actions(forTarget: target as NSObject, forControlEvent: .touchUpInside)? 96 | .map { (target as NSObject, $0) } ?? [] 97 | } 98 | 99 | for (target, selector) in callees { 100 | target.perform(NSSelectorFromString(selector)) 101 | } 102 | } 103 | 104 | public func removeHighlight() {} 105 | 106 | @objc 107 | open func applyStyle(isHighlighted: Bool, highlightColor: UIColor) { 108 | let scale: CGFloat = isHighlighted ? 2.25 : 1.0 109 | self.transform = CGAffineTransform(scaleX: scale, y: scale) 110 | } 111 | 112 | } 113 | -------------------------------------------------------------------------------- /PullToReach/Classes/SelectionIndicatorView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SelectionIndicatorView.swift 3 | // Pods-PullToReach_Example 4 | // 5 | // Created by Paul Kraft on 14.05.19. 6 | // 7 | 8 | import UIKit 9 | 10 | class SelectionIndicatorView: UIView {} 11 | -------------------------------------------------------------------------------- /PullToReach/Classes/UIView+Helper.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Helper.swift 3 | // PullToReach 4 | // 5 | // Created by Stefan Kofler on 17.02.19. 6 | // Copyright © 2019 QuickBird Studios GmbH. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIView { 12 | 13 | func firstSuperview(ofType type: T.Type) -> T? { 14 | guard let superview = superview else { return nil } 15 | 16 | if let correctSuperview = superview as? T { 17 | return correctSuperview 18 | } else { 19 | return superview.firstSuperview(ofType: type) 20 | } 21 | } 22 | 23 | func firstSubview(ofType type: T.Type) -> T? { 24 | if let self = self as? T { return self } 25 | 26 | for subview in subviews { 27 | if let firstSubview = subview.firstSubview(ofType: T.self) { 28 | return firstSubview 29 | } 30 | } 31 | 32 | return nil 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PullToReach 👆 2 | 3 | [![Version](https://img.shields.io/cocoapods/v/PullToReach.svg?style=flat)](https://cocoapods.org/pods/PullToReach) 4 | [![License](https://img.shields.io/cocoapods/l/PullToReach.svg?style=flat)](https://cocoapods.org/pods/PullToReach) 5 | [![Platform](https://img.shields.io/cocoapods/p/PullToReach.svg?style=flat)](https://cocoapods.org/pods/PullToReach) 6 | 7 | PullToReach is a simple drag-and-drop solution for implementing the pull-to-reach functionality seen in the music app [Soor](http://soor.app) by [Tanmay](https://twitter.com/tanmays). This allows your users with big phones to reach the content on the top of the display easily. 8 | 9 | ![Screen recording](./pull_to_reach.gif) 10 | 11 | ## 🏃‍♂️ Getting started 12 | 13 | Getting started is as easy as conforming your ViewController to the `PullToReach` protocol and activating the functionality by calling the `activatePullToReach` function. 14 | 15 | ```swift 16 | class TeamMembersViewController: UITableViewController, PullToReach { 17 | 18 | override func viewDidLoad() { 19 | super.viewDidLoad() 20 | 21 | self.navigationItem.rightBarButtonItems = [ 22 | addBarButtonItem, 23 | refreshBarButtonItem 24 | ] 25 | 26 | self.activatePullToReach(on: navigationItem) 27 | } 28 | 29 | ... 30 | ``` 31 | 32 | If your ViewController is contained in an `UINavigationController` you can activate pull-to-reach on all `UIBarButtonItems`. Selecting an item using pull-to-reach will call the same action as the normal UIBarButtonItem action so there is nothing more for you to be done. 33 | 34 | ## 🖌 Custom styling 35 | 36 | #### Changing highlight color 37 | 38 | If you want to change the highlight color, you can specify it when activating pull-to-reach. 39 | 40 | ```swift 41 | self.activatePullToReach(on: navigationItem, highlightColor: .red) 42 | ``` 43 | 44 | #### Completely custom behavior 45 | 46 | By overriding the `applyStyle` function you can define completely custom style. All the changes between states will be animated by default. 47 | 48 | ```swift 49 | class ScalingButton: UIButton { 50 | 51 | override func applyStyle(isHighlighted: Bool, highlightColor: UIColor) { 52 | let scale: CGFloat = isHighlighted ? 1.5 : 1.0 53 | transform = CGAffineTransform(translationX: scale, y: scale) 54 | } 55 | 56 | } 57 | ``` 58 | 59 | ## 🚴‍♂️ Usage outside of NavigationBar 60 | 61 | Pull-To-Reach can not only be activated for the navigation items, but also for every `UIControl` independently from its position or functionality. This can be very helpful when you have non-standard views with your own controls. To define your style, you can override `applyStyle` as seen above. 62 | 63 | ## 🛠 Installation 64 | 65 | #### CocoaPods 66 | 67 | To integrate PullToReach into your Xcode project using CocoaPods, add this to your `Podfile`: 68 | 69 | ```ruby 70 | pod 'PullToReach' 71 | ``` 72 | 73 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 74 | 75 | #### Manually 76 | 77 | If you prefer not to use any of the dependency managers, you can integrate PullToReach into your project manually, by downloading the source code and placing the files on your project directory. 78 | 79 | ## 👤 Author 80 | This framework is created with ❤️ by [QuickBird Studios](https://quickbirdstudios.com). 81 | 82 | ## ❤️ Contributing 83 | 84 | Open an issue if you need help, if you found a bug, or if you want to discuss a feature request. 85 | 86 | Open a PR if you want to make changes to PullToReach. 87 | 88 | ## 📃 License 89 | 90 | PullToReach is released under an MIT license. See [License.md](https://github.com/quickbirdstudios/PullToReach/blob/master/LICENSE) for more information 91 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /pull_to_reach.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/PullToReach/953c3d21923defb5ff3ffa495687ea413b596257/pull_to_reach.gif --------------------------------------------------------------------------------