├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── HorizontalFloatingHeaderLayout.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── HorizontalFloatingHeaderLayout-Example.xcscheme ├── HorizontalFloatingHeaderLayout.xcworkspace │ └── contents.xcworkspacedata ├── HorizontalFloatingHeaderLayout │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CollectionViewController.swift │ ├── HeaderView.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ └── Info.plist ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── HorizontalFloatingHeaderLayout.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── HorizontalFloatingHeaderLayout │ │ ├── HorizontalFloatingHeaderLayout-dummy.m │ │ ├── HorizontalFloatingHeaderLayout-prefix.pch │ │ ├── HorizontalFloatingHeaderLayout-umbrella.h │ │ ├── HorizontalFloatingHeaderLayout.modulemap │ │ ├── HorizontalFloatingHeaderLayout.xcconfig │ │ ├── Info.plist │ │ └── ResourceBundle-HorizontalFloatingHeaderLayout-Info.plist │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests │ │ ├── Info.plist │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-acknowledgements.markdown │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-acknowledgements.plist │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-dummy.m │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-frameworks.sh │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-resources.sh │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-umbrella.h │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.modulemap │ │ └── Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig │ │ └── Pods-HorizontalFloatingHeaderLayout_Example │ │ ├── Info.plist │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-acknowledgements.markdown │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-acknowledgements.plist │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-dummy.m │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-frameworks.sh │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-resources.sh │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example-umbrella.h │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig │ │ ├── Pods-HorizontalFloatingHeaderLayout_Example.modulemap │ │ └── Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── HorizontalFloatingHeaderLayout.podspec ├── LICENSE ├── Pod ├── Assets │ ├── .gitkeep │ ├── Example.gif │ └── storyboard.png └── Classes │ ├── .gitkeep │ └── HorizontalFloatingHeaderLayout.swift ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | language: objective-c 6 | # cache: cocoapods 7 | # podfile: Example/Podfile 8 | # before_install: 9 | # - gem install cocoapods # Since Travis is not always on latest version 10 | # - pod install --project-directory=Example 11 | script: 12 | - set -o pipefail && xcodebuild test -workspace Example/HorizontalFloatingHeaderLayout.xcworkspace -scheme HorizontalFloatingHeaderLayout-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty 13 | - pod lib lint 14 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 08EEA91A1C35DD9500130ECC /* CollectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EEA9191C35DD9500130ECC /* CollectionViewController.swift */; }; 11 | 08EEA91F1C35DE4400130ECC /* HeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 08EEA91E1C35DE4400130ECC /* HeaderView.xib */; }; 12 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 13 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 14 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 15 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 16 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 17 | BAD66F682698E576C27853F1 /* Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 620083D8CDFD74D652CF7D32 /* Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests.framework */; }; 18 | D7FC6A56E68AA1B13F8F5E92 /* Pods_HorizontalFloatingHeaderLayout_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC95F7AF4B4017EE63F3C4C /* Pods_HorizontalFloatingHeaderLayout_Example.framework */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 25 | proxyType = 1; 26 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 27 | remoteInfo = HorizontalFloatingHeaderLayout; 28 | }; 29 | /* End PBXContainerItemProxy section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 0015CC8F39C984ECCE3B006C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 33 | 00F184C34B58141C9D600309 /* HorizontalFloatingHeaderLayout.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = HorizontalFloatingHeaderLayout.podspec; path = ../HorizontalFloatingHeaderLayout.podspec; sourceTree = ""; }; 34 | 08EEA9191C35DD9500130ECC /* CollectionViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionViewController.swift; sourceTree = ""; }; 35 | 08EEA91E1C35DE4400130ECC /* HeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HeaderView.xib; sourceTree = ""; }; 36 | 183440D97D8C740254678267 /* Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig"; sourceTree = ""; }; 37 | 1A549E9E816012643D63EF32 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig"; sourceTree = ""; }; 38 | 607FACD01AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HorizontalFloatingHeaderLayout_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 40 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 41 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 42 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 43 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 44 | 607FACE51AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = HorizontalFloatingHeaderLayout_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 46 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 47 | 620083D8CDFD74D652CF7D32 /* Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | 6690BC4AC4CDEA19DC19FDAF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 49 | 6CC95F7AF4B4017EE63F3C4C /* Pods_HorizontalFloatingHeaderLayout_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_HorizontalFloatingHeaderLayout_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | 98A0E7F48A362B312E515FC2 /* Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig"; sourceTree = ""; }; 51 | FEB431DD61552C7400B74D8D /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig"; sourceTree = ""; }; 52 | /* End PBXFileReference section */ 53 | 54 | /* Begin PBXFrameworksBuildPhase section */ 55 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 56 | isa = PBXFrameworksBuildPhase; 57 | buildActionMask = 2147483647; 58 | files = ( 59 | D7FC6A56E68AA1B13F8F5E92 /* Pods_HorizontalFloatingHeaderLayout_Example.framework in Frameworks */, 60 | ); 61 | runOnlyForDeploymentPostprocessing = 0; 62 | }; 63 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 64 | isa = PBXFrameworksBuildPhase; 65 | buildActionMask = 2147483647; 66 | files = ( 67 | BAD66F682698E576C27853F1 /* Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests.framework in Frameworks */, 68 | ); 69 | runOnlyForDeploymentPostprocessing = 0; 70 | }; 71 | /* End PBXFrameworksBuildPhase section */ 72 | 73 | /* Begin PBXGroup section */ 74 | 08EEA9221C36BC1C00130ECC /* CollectionView */ = { 75 | isa = PBXGroup; 76 | children = ( 77 | 08EEA9191C35DD9500130ECC /* CollectionViewController.swift */, 78 | 08EEA9231C36BC2300130ECC /* Header */, 79 | ); 80 | name = CollectionView; 81 | sourceTree = ""; 82 | }; 83 | 08EEA9231C36BC2300130ECC /* Header */ = { 84 | isa = PBXGroup; 85 | children = ( 86 | 08EEA91E1C35DE4400130ECC /* HeaderView.xib */, 87 | ); 88 | name = Header; 89 | sourceTree = ""; 90 | }; 91 | 607FACC71AFB9204008FA782 = { 92 | isa = PBXGroup; 93 | children = ( 94 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 95 | 607FACD21AFB9204008FA782 /* Example for HorizontalFloatingHeaderLayout */, 96 | 607FACE81AFB9204008FA782 /* Tests */, 97 | 607FACD11AFB9204008FA782 /* Products */, 98 | DFE4508F2A996605FAE5934D /* Pods */, 99 | B1FA323B287D4A5E33F31AAE /* Frameworks */, 100 | ); 101 | sourceTree = ""; 102 | }; 103 | 607FACD11AFB9204008FA782 /* Products */ = { 104 | isa = PBXGroup; 105 | children = ( 106 | 607FACD01AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Example.app */, 107 | 607FACE51AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Tests.xctest */, 108 | ); 109 | name = Products; 110 | sourceTree = ""; 111 | }; 112 | 607FACD21AFB9204008FA782 /* Example for HorizontalFloatingHeaderLayout */ = { 113 | isa = PBXGroup; 114 | children = ( 115 | 08EEA9221C36BC1C00130ECC /* CollectionView */, 116 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 117 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 118 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 119 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 120 | 607FACD31AFB9204008FA782 /* Supporting Files */, 121 | ); 122 | name = "Example for HorizontalFloatingHeaderLayout"; 123 | path = HorizontalFloatingHeaderLayout; 124 | sourceTree = ""; 125 | }; 126 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | 607FACD41AFB9204008FA782 /* Info.plist */, 130 | ); 131 | name = "Supporting Files"; 132 | sourceTree = ""; 133 | }; 134 | 607FACE81AFB9204008FA782 /* Tests */ = { 135 | isa = PBXGroup; 136 | children = ( 137 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 138 | 607FACE91AFB9204008FA782 /* Supporting Files */, 139 | ); 140 | path = Tests; 141 | sourceTree = ""; 142 | }; 143 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | 607FACEA1AFB9204008FA782 /* Info.plist */, 147 | ); 148 | name = "Supporting Files"; 149 | sourceTree = ""; 150 | }; 151 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 152 | isa = PBXGroup; 153 | children = ( 154 | 00F184C34B58141C9D600309 /* HorizontalFloatingHeaderLayout.podspec */, 155 | 6690BC4AC4CDEA19DC19FDAF /* README.md */, 156 | 0015CC8F39C984ECCE3B006C /* LICENSE */, 157 | ); 158 | name = "Podspec Metadata"; 159 | sourceTree = ""; 160 | }; 161 | B1FA323B287D4A5E33F31AAE /* Frameworks */ = { 162 | isa = PBXGroup; 163 | children = ( 164 | 6CC95F7AF4B4017EE63F3C4C /* Pods_HorizontalFloatingHeaderLayout_Example.framework */, 165 | 620083D8CDFD74D652CF7D32 /* Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests.framework */, 166 | ); 167 | name = Frameworks; 168 | sourceTree = ""; 169 | }; 170 | DFE4508F2A996605FAE5934D /* Pods */ = { 171 | isa = PBXGroup; 172 | children = ( 173 | 98A0E7F48A362B312E515FC2 /* Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig */, 174 | 183440D97D8C740254678267 /* Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig */, 175 | 1A549E9E816012643D63EF32 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig */, 176 | FEB431DD61552C7400B74D8D /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig */, 177 | ); 178 | name = Pods; 179 | sourceTree = ""; 180 | }; 181 | /* End PBXGroup section */ 182 | 183 | /* Begin PBXNativeTarget section */ 184 | 607FACCF1AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Example */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "HorizontalFloatingHeaderLayout_Example" */; 187 | buildPhases = ( 188 | 4B9EBF5CFD3BCD29F718154F /* [CP] Check Pods Manifest.lock */, 189 | 607FACCC1AFB9204008FA782 /* Sources */, 190 | 607FACCD1AFB9204008FA782 /* Frameworks */, 191 | 607FACCE1AFB9204008FA782 /* Resources */, 192 | D05C1DB143C16C0178F92AA6 /* [CP] Embed Pods Frameworks */, 193 | 4CD7BBDA7A607981DA96FAF4 /* [CP] Copy Pods Resources */, 194 | ); 195 | buildRules = ( 196 | ); 197 | dependencies = ( 198 | ); 199 | name = HorizontalFloatingHeaderLayout_Example; 200 | productName = HorizontalFloatingHeaderLayout; 201 | productReference = 607FACD01AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Example.app */; 202 | productType = "com.apple.product-type.application"; 203 | }; 204 | 607FACE41AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Tests */ = { 205 | isa = PBXNativeTarget; 206 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "HorizontalFloatingHeaderLayout_Tests" */; 207 | buildPhases = ( 208 | 053DB55680266F789FB173C0 /* [CP] Check Pods Manifest.lock */, 209 | 607FACE11AFB9204008FA782 /* Sources */, 210 | 607FACE21AFB9204008FA782 /* Frameworks */, 211 | 607FACE31AFB9204008FA782 /* Resources */, 212 | BC7BE30DEE9C8DE0FDE75D3C /* [CP] Embed Pods Frameworks */, 213 | 8545D3A38A68D4274B9182C6 /* [CP] Copy Pods Resources */, 214 | ); 215 | buildRules = ( 216 | ); 217 | dependencies = ( 218 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 219 | ); 220 | name = HorizontalFloatingHeaderLayout_Tests; 221 | productName = Tests; 222 | productReference = 607FACE51AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Tests.xctest */; 223 | productType = "com.apple.product-type.bundle.unit-test"; 224 | }; 225 | /* End PBXNativeTarget section */ 226 | 227 | /* Begin PBXProject section */ 228 | 607FACC81AFB9204008FA782 /* Project object */ = { 229 | isa = PBXProject; 230 | attributes = { 231 | LastSwiftUpdateCheck = 0720; 232 | LastUpgradeCheck = 0920; 233 | ORGANIZATIONNAME = CocoaPods; 234 | TargetAttributes = { 235 | 607FACCF1AFB9204008FA782 = { 236 | CreatedOnToolsVersion = 6.3.1; 237 | }; 238 | 607FACE41AFB9204008FA782 = { 239 | CreatedOnToolsVersion = 6.3.1; 240 | TestTargetID = 607FACCF1AFB9204008FA782; 241 | }; 242 | }; 243 | }; 244 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "HorizontalFloatingHeaderLayout" */; 245 | compatibilityVersion = "Xcode 3.2"; 246 | developmentRegion = English; 247 | hasScannedForEncodings = 0; 248 | knownRegions = ( 249 | en, 250 | Base, 251 | ); 252 | mainGroup = 607FACC71AFB9204008FA782; 253 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 254 | projectDirPath = ""; 255 | projectRoot = ""; 256 | targets = ( 257 | 607FACCF1AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Example */, 258 | 607FACE41AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Tests */, 259 | ); 260 | }; 261 | /* End PBXProject section */ 262 | 263 | /* Begin PBXResourcesBuildPhase section */ 264 | 607FACCE1AFB9204008FA782 /* Resources */ = { 265 | isa = PBXResourcesBuildPhase; 266 | buildActionMask = 2147483647; 267 | files = ( 268 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 269 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 270 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 271 | 08EEA91F1C35DE4400130ECC /* HeaderView.xib in Resources */, 272 | ); 273 | runOnlyForDeploymentPostprocessing = 0; 274 | }; 275 | 607FACE31AFB9204008FA782 /* Resources */ = { 276 | isa = PBXResourcesBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | ); 280 | runOnlyForDeploymentPostprocessing = 0; 281 | }; 282 | /* End PBXResourcesBuildPhase section */ 283 | 284 | /* Begin PBXShellScriptBuildPhase section */ 285 | 053DB55680266F789FB173C0 /* [CP] Check Pods Manifest.lock */ = { 286 | isa = PBXShellScriptBuildPhase; 287 | buildActionMask = 2147483647; 288 | files = ( 289 | ); 290 | inputPaths = ( 291 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 292 | "${PODS_ROOT}/Manifest.lock", 293 | ); 294 | name = "[CP] Check Pods Manifest.lock"; 295 | outputPaths = ( 296 | "$(DERIVED_FILE_DIR)/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-checkManifestLockResult.txt", 297 | ); 298 | runOnlyForDeploymentPostprocessing = 0; 299 | shellPath = /bin/sh; 300 | 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"; 301 | showEnvVarsInLog = 0; 302 | }; 303 | 4B9EBF5CFD3BCD29F718154F /* [CP] Check Pods Manifest.lock */ = { 304 | isa = PBXShellScriptBuildPhase; 305 | buildActionMask = 2147483647; 306 | files = ( 307 | ); 308 | inputPaths = ( 309 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 310 | "${PODS_ROOT}/Manifest.lock", 311 | ); 312 | name = "[CP] Check Pods Manifest.lock"; 313 | outputPaths = ( 314 | "$(DERIVED_FILE_DIR)/Pods-HorizontalFloatingHeaderLayout_Example-checkManifestLockResult.txt", 315 | ); 316 | runOnlyForDeploymentPostprocessing = 0; 317 | shellPath = /bin/sh; 318 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 319 | showEnvVarsInLog = 0; 320 | }; 321 | 4CD7BBDA7A607981DA96FAF4 /* [CP] Copy Pods Resources */ = { 322 | isa = PBXShellScriptBuildPhase; 323 | buildActionMask = 2147483647; 324 | files = ( 325 | ); 326 | inputPaths = ( 327 | ); 328 | name = "[CP] Copy Pods Resources"; 329 | outputPaths = ( 330 | ); 331 | runOnlyForDeploymentPostprocessing = 0; 332 | shellPath = /bin/sh; 333 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example-resources.sh\"\n"; 334 | showEnvVarsInLog = 0; 335 | }; 336 | 8545D3A38A68D4274B9182C6 /* [CP] Copy Pods Resources */ = { 337 | isa = PBXShellScriptBuildPhase; 338 | buildActionMask = 2147483647; 339 | files = ( 340 | ); 341 | inputPaths = ( 342 | ); 343 | name = "[CP] Copy Pods Resources"; 344 | outputPaths = ( 345 | ); 346 | runOnlyForDeploymentPostprocessing = 0; 347 | shellPath = /bin/sh; 348 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-resources.sh\"\n"; 349 | showEnvVarsInLog = 0; 350 | }; 351 | BC7BE30DEE9C8DE0FDE75D3C /* [CP] Embed Pods Frameworks */ = { 352 | isa = PBXShellScriptBuildPhase; 353 | buildActionMask = 2147483647; 354 | files = ( 355 | ); 356 | inputPaths = ( 357 | "${SRCROOT}/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-frameworks.sh", 358 | "${BUILT_PRODUCTS_DIR}/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.framework", 359 | ); 360 | name = "[CP] Embed Pods Frameworks"; 361 | outputPaths = ( 362 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/HorizontalFloatingHeaderLayout.framework", 363 | ); 364 | runOnlyForDeploymentPostprocessing = 0; 365 | shellPath = /bin/sh; 366 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-frameworks.sh\"\n"; 367 | showEnvVarsInLog = 0; 368 | }; 369 | D05C1DB143C16C0178F92AA6 /* [CP] Embed Pods Frameworks */ = { 370 | isa = PBXShellScriptBuildPhase; 371 | buildActionMask = 2147483647; 372 | files = ( 373 | ); 374 | inputPaths = ( 375 | "${SRCROOT}/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example-frameworks.sh", 376 | "${BUILT_PRODUCTS_DIR}/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.framework", 377 | ); 378 | name = "[CP] Embed Pods Frameworks"; 379 | outputPaths = ( 380 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/HorizontalFloatingHeaderLayout.framework", 381 | ); 382 | runOnlyForDeploymentPostprocessing = 0; 383 | shellPath = /bin/sh; 384 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example-frameworks.sh\"\n"; 385 | showEnvVarsInLog = 0; 386 | }; 387 | /* End PBXShellScriptBuildPhase section */ 388 | 389 | /* Begin PBXSourcesBuildPhase section */ 390 | 607FACCC1AFB9204008FA782 /* Sources */ = { 391 | isa = PBXSourcesBuildPhase; 392 | buildActionMask = 2147483647; 393 | files = ( 394 | 08EEA91A1C35DD9500130ECC /* CollectionViewController.swift in Sources */, 395 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 396 | ); 397 | runOnlyForDeploymentPostprocessing = 0; 398 | }; 399 | 607FACE11AFB9204008FA782 /* Sources */ = { 400 | isa = PBXSourcesBuildPhase; 401 | buildActionMask = 2147483647; 402 | files = ( 403 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 404 | ); 405 | runOnlyForDeploymentPostprocessing = 0; 406 | }; 407 | /* End PBXSourcesBuildPhase section */ 408 | 409 | /* Begin PBXTargetDependency section */ 410 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 411 | isa = PBXTargetDependency; 412 | target = 607FACCF1AFB9204008FA782 /* HorizontalFloatingHeaderLayout_Example */; 413 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 414 | }; 415 | /* End PBXTargetDependency section */ 416 | 417 | /* Begin PBXVariantGroup section */ 418 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 419 | isa = PBXVariantGroup; 420 | children = ( 421 | 607FACDA1AFB9204008FA782 /* Base */, 422 | ); 423 | name = Main.storyboard; 424 | sourceTree = ""; 425 | }; 426 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 427 | isa = PBXVariantGroup; 428 | children = ( 429 | 607FACDF1AFB9204008FA782 /* Base */, 430 | ); 431 | name = LaunchScreen.xib; 432 | sourceTree = ""; 433 | }; 434 | /* End PBXVariantGroup section */ 435 | 436 | /* Begin XCBuildConfiguration section */ 437 | 607FACED1AFB9204008FA782 /* Debug */ = { 438 | isa = XCBuildConfiguration; 439 | buildSettings = { 440 | ALWAYS_SEARCH_USER_PATHS = NO; 441 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 442 | CLANG_CXX_LIBRARY = "libc++"; 443 | CLANG_ENABLE_MODULES = YES; 444 | CLANG_ENABLE_OBJC_ARC = YES; 445 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 446 | CLANG_WARN_BOOL_CONVERSION = YES; 447 | CLANG_WARN_COMMA = YES; 448 | CLANG_WARN_CONSTANT_CONVERSION = YES; 449 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 450 | CLANG_WARN_EMPTY_BODY = YES; 451 | CLANG_WARN_ENUM_CONVERSION = YES; 452 | CLANG_WARN_INFINITE_RECURSION = YES; 453 | CLANG_WARN_INT_CONVERSION = YES; 454 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 455 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 456 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 457 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 458 | CLANG_WARN_STRICT_PROTOTYPES = YES; 459 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 460 | CLANG_WARN_UNREACHABLE_CODE = YES; 461 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 462 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 463 | COPY_PHASE_STRIP = NO; 464 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 465 | ENABLE_STRICT_OBJC_MSGSEND = YES; 466 | ENABLE_TESTABILITY = YES; 467 | GCC_C_LANGUAGE_STANDARD = gnu99; 468 | GCC_DYNAMIC_NO_PIC = NO; 469 | GCC_NO_COMMON_BLOCKS = YES; 470 | GCC_OPTIMIZATION_LEVEL = 0; 471 | GCC_PREPROCESSOR_DEFINITIONS = ( 472 | "DEBUG=1", 473 | "$(inherited)", 474 | ); 475 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 476 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 477 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 478 | GCC_WARN_UNDECLARED_SELECTOR = YES; 479 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 480 | GCC_WARN_UNUSED_FUNCTION = YES; 481 | GCC_WARN_UNUSED_VARIABLE = YES; 482 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 483 | MTL_ENABLE_DEBUG_INFO = YES; 484 | ONLY_ACTIVE_ARCH = YES; 485 | SDKROOT = iphoneos; 486 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 487 | SWIFT_VERSION = 4.0; 488 | }; 489 | name = Debug; 490 | }; 491 | 607FACEE1AFB9204008FA782 /* Release */ = { 492 | isa = XCBuildConfiguration; 493 | buildSettings = { 494 | ALWAYS_SEARCH_USER_PATHS = NO; 495 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 496 | CLANG_CXX_LIBRARY = "libc++"; 497 | CLANG_ENABLE_MODULES = YES; 498 | CLANG_ENABLE_OBJC_ARC = YES; 499 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 500 | CLANG_WARN_BOOL_CONVERSION = YES; 501 | CLANG_WARN_COMMA = YES; 502 | CLANG_WARN_CONSTANT_CONVERSION = YES; 503 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 504 | CLANG_WARN_EMPTY_BODY = YES; 505 | CLANG_WARN_ENUM_CONVERSION = YES; 506 | CLANG_WARN_INFINITE_RECURSION = YES; 507 | CLANG_WARN_INT_CONVERSION = YES; 508 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 509 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 510 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 511 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 512 | CLANG_WARN_STRICT_PROTOTYPES = YES; 513 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 514 | CLANG_WARN_UNREACHABLE_CODE = YES; 515 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 516 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 517 | COPY_PHASE_STRIP = NO; 518 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 519 | ENABLE_NS_ASSERTIONS = NO; 520 | ENABLE_STRICT_OBJC_MSGSEND = YES; 521 | GCC_C_LANGUAGE_STANDARD = gnu99; 522 | GCC_NO_COMMON_BLOCKS = YES; 523 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 524 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 525 | GCC_WARN_UNDECLARED_SELECTOR = YES; 526 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 527 | GCC_WARN_UNUSED_FUNCTION = YES; 528 | GCC_WARN_UNUSED_VARIABLE = YES; 529 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 530 | MTL_ENABLE_DEBUG_INFO = NO; 531 | SDKROOT = iphoneos; 532 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 533 | SWIFT_VERSION = 4.0; 534 | VALIDATE_PRODUCT = YES; 535 | }; 536 | name = Release; 537 | }; 538 | 607FACF01AFB9204008FA782 /* Debug */ = { 539 | isa = XCBuildConfiguration; 540 | baseConfigurationReference = 98A0E7F48A362B312E515FC2 /* Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig */; 541 | buildSettings = { 542 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 543 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 544 | CODE_SIGN_IDENTITY = "iPhone Developer"; 545 | INFOPLIST_FILE = HorizontalFloatingHeaderLayout/Info.plist; 546 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 547 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 548 | MODULE_NAME = ExampleApp; 549 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 550 | PRODUCT_NAME = "$(TARGET_NAME)"; 551 | SWIFT_VERSION = 4.0; 552 | }; 553 | name = Debug; 554 | }; 555 | 607FACF11AFB9204008FA782 /* Release */ = { 556 | isa = XCBuildConfiguration; 557 | baseConfigurationReference = 183440D97D8C740254678267 /* Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig */; 558 | buildSettings = { 559 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 560 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 561 | CODE_SIGN_IDENTITY = "iPhone Developer"; 562 | INFOPLIST_FILE = HorizontalFloatingHeaderLayout/Info.plist; 563 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 564 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 565 | MODULE_NAME = ExampleApp; 566 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 567 | PRODUCT_NAME = "$(TARGET_NAME)"; 568 | SWIFT_VERSION = 4.0; 569 | }; 570 | name = Release; 571 | }; 572 | 607FACF31AFB9204008FA782 /* Debug */ = { 573 | isa = XCBuildConfiguration; 574 | baseConfigurationReference = 1A549E9E816012643D63EF32 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig */; 575 | buildSettings = { 576 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 577 | BUNDLE_LOADER = "$(TEST_HOST)"; 578 | FRAMEWORK_SEARCH_PATHS = ( 579 | "$(SDKROOT)/Developer/Library/Frameworks", 580 | "$(inherited)", 581 | ); 582 | GCC_PREPROCESSOR_DEFINITIONS = ( 583 | "DEBUG=1", 584 | "$(inherited)", 585 | ); 586 | INFOPLIST_FILE = Tests/Info.plist; 587 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 588 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 589 | PRODUCT_NAME = "$(TARGET_NAME)"; 590 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/HorizontalFloatingHeaderLayout_Example.app/HorizontalFloatingHeaderLayout_Example"; 591 | }; 592 | name = Debug; 593 | }; 594 | 607FACF41AFB9204008FA782 /* Release */ = { 595 | isa = XCBuildConfiguration; 596 | baseConfigurationReference = FEB431DD61552C7400B74D8D /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig */; 597 | buildSettings = { 598 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 599 | BUNDLE_LOADER = "$(TEST_HOST)"; 600 | FRAMEWORK_SEARCH_PATHS = ( 601 | "$(SDKROOT)/Developer/Library/Frameworks", 602 | "$(inherited)", 603 | ); 604 | INFOPLIST_FILE = Tests/Info.plist; 605 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 606 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 607 | PRODUCT_NAME = "$(TARGET_NAME)"; 608 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/HorizontalFloatingHeaderLayout_Example.app/HorizontalFloatingHeaderLayout_Example"; 609 | }; 610 | name = Release; 611 | }; 612 | /* End XCBuildConfiguration section */ 613 | 614 | /* Begin XCConfigurationList section */ 615 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "HorizontalFloatingHeaderLayout" */ = { 616 | isa = XCConfigurationList; 617 | buildConfigurations = ( 618 | 607FACED1AFB9204008FA782 /* Debug */, 619 | 607FACEE1AFB9204008FA782 /* Release */, 620 | ); 621 | defaultConfigurationIsVisible = 0; 622 | defaultConfigurationName = Release; 623 | }; 624 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "HorizontalFloatingHeaderLayout_Example" */ = { 625 | isa = XCConfigurationList; 626 | buildConfigurations = ( 627 | 607FACF01AFB9204008FA782 /* Debug */, 628 | 607FACF11AFB9204008FA782 /* Release */, 629 | ); 630 | defaultConfigurationIsVisible = 0; 631 | defaultConfigurationName = Release; 632 | }; 633 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "HorizontalFloatingHeaderLayout_Tests" */ = { 634 | isa = XCConfigurationList; 635 | buildConfigurations = ( 636 | 607FACF31AFB9204008FA782 /* Debug */, 637 | 607FACF41AFB9204008FA782 /* Release */, 638 | ); 639 | defaultConfigurationIsVisible = 0; 640 | defaultConfigurationName = Release; 641 | }; 642 | /* End XCConfigurationList section */ 643 | }; 644 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 645 | } 646 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout.xcodeproj/xcshareddata/xcschemes/HorizontalFloatingHeaderLayout-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 45 | 46 | 48 | 54 | 55 | 56 | 57 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 80 | 82 | 88 | 89 | 90 | 91 | 92 | 93 | 99 | 101 | 107 | 108 | 109 | 110 | 112 | 113 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // HorizontalFloatingHeaderLayout 4 | // 5 | // Created by Diego Cruz on 12/30/2015. 6 | // Copyright (c) 2015 Diego Cruz. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | private func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout/CollectionViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CollectionViewController.swift 3 | // HorizontalFloatingHeaderLayout 4 | // 5 | // Created by Diego Alberto Cruz Castillo on 12/31/15. 6 | // Copyright © 2015 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import HorizontalFloatingHeaderLayout 11 | 12 | class CollectionViewController: UICollectionViewController,HorizontalFloatingHeaderLayoutDelegate { 13 | 14 | //MARK: - Configure methods 15 | override func viewDidLoad() { 16 | super.viewDidLoad() 17 | configure() 18 | } 19 | 20 | private func configure(){ 21 | func configureCollectionView(){ 22 | collectionView?.contentInset = UIEdgeInsetsMake(8, 8, 8, 8) 23 | } 24 | 25 | func configureHeaderCell(){ 26 | let headerNib = UINib(nibName: "HeaderView",bundle: nil) 27 | collectionView?.register(headerNib, forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "headerView") 28 | } 29 | 30 | // 31 | configureCollectionView() 32 | configureHeaderCell() 33 | } 34 | 35 | // MARK: - UICollectionView methods 36 | //MARK: Datasource 37 | //Number of Sections 38 | override func numberOfSections(in collectionView: UICollectionView) -> Int { 39 | return 6 40 | } 41 | 42 | //Number of Items 43 | override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 44 | return 34 45 | } 46 | 47 | //Cells 48 | override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 49 | let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) 50 | return cell 51 | } 52 | 53 | //Headers 54 | override func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView { 55 | let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "headerView", for: indexPath) 56 | return header 57 | } 58 | 59 | //MARK: Delegate (HorizontalFloatingHeaderDelegate) 60 | //Item Size 61 | func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderItemSizeAt indexPath: IndexPath) -> CGSize { 62 | return CGSize(width:48, height: 48) 63 | } 64 | 65 | //Header Size 66 | func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderSizeAt section: Int) -> CGSize { 67 | return CGSize(width:160, height:30) 68 | } 69 | 70 | //Item Spacing 71 | func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderItemSpacingForSectionAt section: Int) -> CGFloat { 72 | return 8.0 73 | } 74 | 75 | //Line Spacing 76 | func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderColumnSpacingForSectionAt section: Int) -> CGFloat { 77 | return 8.0 78 | } 79 | 80 | //Section Insets 81 | func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderSectionInsetAt section: Int) -> UIEdgeInsets { 82 | switch section{ 83 | case 0: 84 | return UIEdgeInsetsMake(8, 0, 0, 0) 85 | default: 86 | return UIEdgeInsetsMake(8, 8, 0, 0) 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout/HeaderView.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Example/HorizontalFloatingHeaderLayout/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 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '10.0' 2 | 3 | target 'HorizontalFloatingHeaderLayout_Example' do 4 | use_frameworks! 5 | pod "HorizontalFloatingHeaderLayout", :path => "../" 6 | target 'HorizontalFloatingHeaderLayout_Tests' do 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - HorizontalFloatingHeaderLayout (1.0.0) 3 | 4 | DEPENDENCIES: 5 | - HorizontalFloatingHeaderLayout (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | HorizontalFloatingHeaderLayout: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | HorizontalFloatingHeaderLayout: b94c61cfb2ea7803db130603303e8bfcabd50091 13 | 14 | PODFILE CHECKSUM: 647489050922417f0e7df7b3f73d2e359f16b604 15 | 16 | COCOAPODS: 1.3.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/HorizontalFloatingHeaderLayout.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "HorizontalFloatingHeaderLayout", 3 | "version": "1.0.0", 4 | "summary": "Floating headers with horizontal scrolling layout for UICollectionView, inspired by iOS native Emoji Keyboard layout", 5 | "description": "HorizontalFLoatingHeaderLayout is a subclass of UICollectionViewLayout built with performance in mind. Born from the need for replicating UITableView's sticky headers behavior and iOS 8+ native Emoji keyboard.\n\nFor a vertical implementation, you can turn on *sectionHeadersPinToVisibleBounds* flag from UICollectionViewFlowLayout (available since iOS 9.0)", 6 | "homepage": "https://github.com/cruzdiego/HorizontalFloatingHeaderLayout", 7 | "license": "MIT", 8 | "authors": { 9 | "Diego Cruz": "diego.cruz@icloud.com" 10 | }, 11 | "source": { 12 | "git": "https://github.com/cruzdiego/HorizontalFloatingHeaderLayout.git", 13 | "tag": "1.0.0" 14 | }, 15 | "platforms": { 16 | "ios": "8.0" 17 | }, 18 | "requires_arc": true, 19 | "source_files": "Pod/Classes/**/*", 20 | "resource_bundles": { 21 | "HorizontalFloatingHeaderLayout": [ 22 | "Pod/Assets/*.png" 23 | ] 24 | }, 25 | "frameworks": "UIKit" 26 | } 27 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - HorizontalFloatingHeaderLayout (1.0.0) 3 | 4 | DEPENDENCIES: 5 | - HorizontalFloatingHeaderLayout (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | HorizontalFloatingHeaderLayout: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | HorizontalFloatingHeaderLayout: b94c61cfb2ea7803db130603303e8bfcabd50091 13 | 14 | PODFILE CHECKSUM: 647489050922417f0e7df7b3f73d2e359f16b604 15 | 16 | COCOAPODS: 1.3.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 183DD710FF2C7CE76440DF885DDA4AF0 /* Pods-HorizontalFloatingHeaderLayout_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B72DBFDDA5F63BBD21065F4F4F30741F /* Pods-HorizontalFloatingHeaderLayout_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 18E1E25713526C0E8F736C46908067AA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D88AAE1F92055A60CC2FC970D7D34634 /* Foundation.framework */; }; 12 | 765B71B0DEAC48F6FA9149CBD537C743 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0091FB6F5C808D4AE028F818BFE8BC86 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 8B96931BBCE2E5A86130DE4BB222F1A7 /* HorizontalFloatingHeaderLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFADFC5D7BE31B07C03D038DA29D6074 /* HorizontalFloatingHeaderLayout.swift */; }; 14 | 92EB1E290D3130338B14007C7E3482F5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D88AAE1F92055A60CC2FC970D7D34634 /* Foundation.framework */; }; 15 | 9CB4E071CBABB3233A4C429869667CB8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D88AAE1F92055A60CC2FC970D7D34634 /* Foundation.framework */; }; 16 | AC9915D5AAA655F2F9AA177D7EB2AB0E /* HorizontalFloatingHeaderLayout-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B977FF3598C981B5753481E36FF642 /* HorizontalFloatingHeaderLayout-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | BD916D82D1A8D607951848159215F324 /* Pods-HorizontalFloatingHeaderLayout_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D590AB4634D27472691533D983AD0EEA /* Pods-HorizontalFloatingHeaderLayout_Example-dummy.m */; }; 18 | DDEB4ED4B8000E059C227765B5393739 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F1C0C40F96B58EC8AA1A28A7C254E029 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-dummy.m */; }; 19 | E2FD51E4F2ABA34089229561C403D53F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B63C6A64CF66340668996F78DA6BB482 /* UIKit.framework */; }; 20 | F432BA97545691A962C516E80A3B68D4 /* HorizontalFloatingHeaderLayout.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C75BB7F20DCFBD0CF57C085BB34D99BF /* HorizontalFloatingHeaderLayout.bundle */; }; 21 | F792A491BD4433CC9199206B8217F1E8 /* HorizontalFloatingHeaderLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA4518CCF961A5B1AEC27B1F6A25F89 /* HorizontalFloatingHeaderLayout-dummy.m */; }; 22 | FD3FBBCFCC6621C60FA0E667046CD9AE /* storyboard.png in Resources */ = {isa = PBXBuildFile; fileRef = CEC8C55F4483B65F11CB6E6AE3E4F4AA /* storyboard.png */; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXContainerItemProxy section */ 26 | 1FAD4F13BA136250B7F5555B7E025D7A /* PBXContainerItemProxy */ = { 27 | isa = PBXContainerItemProxy; 28 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 29 | proxyType = 1; 30 | remoteGlobalIDString = F2FEB198244C1161E741FD1FBD693A83; 31 | remoteInfo = HorizontalFloatingHeaderLayout; 32 | }; 33 | 4E10504E69F7BFFAAA4DBC471D495A22 /* PBXContainerItemProxy */ = { 34 | isa = PBXContainerItemProxy; 35 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 36 | proxyType = 1; 37 | remoteGlobalIDString = 46CD6F308C225BA2E863C3E523C1E400; 38 | remoteInfo = "HorizontalFloatingHeaderLayout-HorizontalFloatingHeaderLayout"; 39 | }; 40 | 73ADEB0922E9A4CDFFA291B1EB0E2FAC /* PBXContainerItemProxy */ = { 41 | isa = PBXContainerItemProxy; 42 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 43 | proxyType = 1; 44 | remoteGlobalIDString = F2FEB198244C1161E741FD1FBD693A83; 45 | remoteInfo = HorizontalFloatingHeaderLayout; 46 | }; 47 | /* End PBXContainerItemProxy section */ 48 | 49 | /* Begin PBXFileReference section */ 50 | 0091FB6F5C808D4AE028F818BFE8BC86 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-umbrella.h"; sourceTree = ""; }; 51 | 02E992475DB6179C6828C9BD30931760 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-frameworks.sh"; sourceTree = ""; }; 52 | 18F0DC43985926B3A4808D347FB3943D /* HorizontalFloatingHeaderLayout-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HorizontalFloatingHeaderLayout-prefix.pch"; sourceTree = ""; }; 53 | 196EFC607D7F61068EB6EC48C37064BB /* HorizontalFloatingHeaderLayout.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = HorizontalFloatingHeaderLayout.modulemap; sourceTree = ""; }; 54 | 1DE58AE33E74F5A699AE7A067CB23520 /* Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 55 | 23C60ACDF0396F238A2FA45070A7695B /* Pods-HorizontalFloatingHeaderLayout_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-HorizontalFloatingHeaderLayout_Example-resources.sh"; sourceTree = ""; }; 56 | 278BD13B5A45B83CB79CF8EB3C0446D5 /* Pods_HorizontalFloatingHeaderLayout_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_HorizontalFloatingHeaderLayout_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 57 | 4EA4518CCF961A5B1AEC27B1F6A25F89 /* HorizontalFloatingHeaderLayout-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "HorizontalFloatingHeaderLayout-dummy.m"; sourceTree = ""; }; 58 | 53A5FC28CB2F41BA02E7877BD54FA5AE /* Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig"; sourceTree = ""; }; 59 | 608A716741CE98AAC30861C222597283 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.modulemap"; sourceTree = ""; }; 60 | 6F8E2BAA62E61386C8A701245698E945 /* HorizontalFloatingHeaderLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = HorizontalFloatingHeaderLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 61 | 7A3BA988000306878EA1BFC180E40549 /* Pods-HorizontalFloatingHeaderLayout_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-HorizontalFloatingHeaderLayout_Example-frameworks.sh"; sourceTree = ""; }; 62 | 7A3FE6D67C88A414BEAABE745F7B0A76 /* ResourceBundle-HorizontalFloatingHeaderLayout-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-HorizontalFloatingHeaderLayout-Info.plist"; sourceTree = ""; }; 63 | 87B977FF3598C981B5753481E36FF642 /* HorizontalFloatingHeaderLayout-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HorizontalFloatingHeaderLayout-umbrella.h"; sourceTree = ""; }; 64 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 65 | 94B291D67E5D231013049DB40336D71B /* HorizontalFloatingHeaderLayout.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HorizontalFloatingHeaderLayout.xcconfig; sourceTree = ""; }; 66 | 98DB33071151532A31DC98D5AB3DF6BC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 67 | A0DC458B073A23A868E4F7D8F77E8390 /* Pods-HorizontalFloatingHeaderLayout_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-HorizontalFloatingHeaderLayout_Example-acknowledgements.plist"; sourceTree = ""; }; 68 | A372888C7CDFE0D6B11E7B9AB4C2C72A /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig"; sourceTree = ""; }; 69 | A8A18F0B817BA92BA03E21E8F785E68D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 70 | AFADFC5D7BE31B07C03D038DA29D6074 /* HorizontalFloatingHeaderLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalFloatingHeaderLayout.swift; path = Pod/Classes/HorizontalFloatingHeaderLayout.swift; sourceTree = ""; }; 71 | B09316980406E757E7207B5A663C8440 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-acknowledgements.plist"; sourceTree = ""; }; 72 | B241BE03D96FE1B82E8982DC2BAE9205 /* Pods-HorizontalFloatingHeaderLayout_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-HorizontalFloatingHeaderLayout_Example.modulemap"; sourceTree = ""; }; 73 | B5FFD2267310C571BD332C6225D690E9 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-acknowledgements.markdown"; sourceTree = ""; }; 74 | B63C6A64CF66340668996F78DA6BB482 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; 75 | B72DBFDDA5F63BBD21065F4F4F30741F /* Pods-HorizontalFloatingHeaderLayout_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-HorizontalFloatingHeaderLayout_Example-umbrella.h"; sourceTree = ""; }; 76 | B9B68B33C74280F62780C0AE37A24A70 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-resources.sh"; sourceTree = ""; }; 77 | C081EC4319EF9AB4CABE80C6D2112C3E /* Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig"; sourceTree = ""; }; 78 | C75BB7F20DCFBD0CF57C085BB34D99BF /* HorizontalFloatingHeaderLayout.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = HorizontalFloatingHeaderLayout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 79 | CEC8C55F4483B65F11CB6E6AE3E4F4AA /* storyboard.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = storyboard.png; path = Pod/Assets/storyboard.png; sourceTree = ""; }; 80 | D590AB4634D27472691533D983AD0EEA /* Pods-HorizontalFloatingHeaderLayout_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-HorizontalFloatingHeaderLayout_Example-dummy.m"; sourceTree = ""; }; 81 | D69619647E19B5BF3554DB3909212829 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig"; sourceTree = ""; }; 82 | D88AAE1F92055A60CC2FC970D7D34634 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 83 | EF121899900720E11DF870313027BFC6 /* Pods-HorizontalFloatingHeaderLayout_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-HorizontalFloatingHeaderLayout_Example-acknowledgements.markdown"; sourceTree = ""; }; 84 | F1C0C40F96B58EC8AA1A28A7C254E029 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-dummy.m"; sourceTree = ""; }; 85 | F36D140DE861A69977A21E7393FF2F55 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 86 | /* End PBXFileReference section */ 87 | 88 | /* Begin PBXFrameworksBuildPhase section */ 89 | 1E3E40A270DFFD220A616DA02EEC34E2 /* Frameworks */ = { 90 | isa = PBXFrameworksBuildPhase; 91 | buildActionMask = 2147483647; 92 | files = ( 93 | ); 94 | runOnlyForDeploymentPostprocessing = 0; 95 | }; 96 | 7A962C2A6EF4968AF16DD65ABBC53E1F /* Frameworks */ = { 97 | isa = PBXFrameworksBuildPhase; 98 | buildActionMask = 2147483647; 99 | files = ( 100 | 92EB1E290D3130338B14007C7E3482F5 /* Foundation.framework in Frameworks */, 101 | ); 102 | runOnlyForDeploymentPostprocessing = 0; 103 | }; 104 | A8B00DDEF42192A4F94557CE2017204C /* Frameworks */ = { 105 | isa = PBXFrameworksBuildPhase; 106 | buildActionMask = 2147483647; 107 | files = ( 108 | 9CB4E071CBABB3233A4C429869667CB8 /* Foundation.framework in Frameworks */, 109 | E2FD51E4F2ABA34089229561C403D53F /* UIKit.framework in Frameworks */, 110 | ); 111 | runOnlyForDeploymentPostprocessing = 0; 112 | }; 113 | D46E19E5B0670FD98FBD6485025D0922 /* Frameworks */ = { 114 | isa = PBXFrameworksBuildPhase; 115 | buildActionMask = 2147483647; 116 | files = ( 117 | 18E1E25713526C0E8F736C46908067AA /* Foundation.framework in Frameworks */, 118 | ); 119 | runOnlyForDeploymentPostprocessing = 0; 120 | }; 121 | /* End PBXFrameworksBuildPhase section */ 122 | 123 | /* Begin PBXGroup section */ 124 | 0233FEBD4D35171261E47DDDDF507EA2 /* Targets Support Files */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 37676BAF549958DA8703D9D0147EFDF8 /* Pods-HorizontalFloatingHeaderLayout_Example */, 128 | 9CBC4577FEB0771A494B12914BEDD489 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests */, 129 | ); 130 | name = "Targets Support Files"; 131 | sourceTree = ""; 132 | }; 133 | 1415428EE5E3F1DA13BA1AB51B46467D /* Products */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | C75BB7F20DCFBD0CF57C085BB34D99BF /* HorizontalFloatingHeaderLayout.bundle */, 137 | 6F8E2BAA62E61386C8A701245698E945 /* HorizontalFloatingHeaderLayout.framework */, 138 | 278BD13B5A45B83CB79CF8EB3C0446D5 /* Pods_HorizontalFloatingHeaderLayout_Example.framework */, 139 | 1DE58AE33E74F5A699AE7A067CB23520 /* Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests.framework */, 140 | ); 141 | name = Products; 142 | sourceTree = ""; 143 | }; 144 | 14DEF46CB41E7D6EFB5BD64DD7ADEE8D /* Support Files */ = { 145 | isa = PBXGroup; 146 | children = ( 147 | 196EFC607D7F61068EB6EC48C37064BB /* HorizontalFloatingHeaderLayout.modulemap */, 148 | 94B291D67E5D231013049DB40336D71B /* HorizontalFloatingHeaderLayout.xcconfig */, 149 | 4EA4518CCF961A5B1AEC27B1F6A25F89 /* HorizontalFloatingHeaderLayout-dummy.m */, 150 | 18F0DC43985926B3A4808D347FB3943D /* HorizontalFloatingHeaderLayout-prefix.pch */, 151 | 87B977FF3598C981B5753481E36FF642 /* HorizontalFloatingHeaderLayout-umbrella.h */, 152 | A8A18F0B817BA92BA03E21E8F785E68D /* Info.plist */, 153 | 7A3FE6D67C88A414BEAABE745F7B0A76 /* ResourceBundle-HorizontalFloatingHeaderLayout-Info.plist */, 154 | ); 155 | name = "Support Files"; 156 | path = "Example/Pods/Target Support Files/HorizontalFloatingHeaderLayout"; 157 | sourceTree = ""; 158 | }; 159 | 37676BAF549958DA8703D9D0147EFDF8 /* Pods-HorizontalFloatingHeaderLayout_Example */ = { 160 | isa = PBXGroup; 161 | children = ( 162 | 98DB33071151532A31DC98D5AB3DF6BC /* Info.plist */, 163 | B241BE03D96FE1B82E8982DC2BAE9205 /* Pods-HorizontalFloatingHeaderLayout_Example.modulemap */, 164 | EF121899900720E11DF870313027BFC6 /* Pods-HorizontalFloatingHeaderLayout_Example-acknowledgements.markdown */, 165 | A0DC458B073A23A868E4F7D8F77E8390 /* Pods-HorizontalFloatingHeaderLayout_Example-acknowledgements.plist */, 166 | D590AB4634D27472691533D983AD0EEA /* Pods-HorizontalFloatingHeaderLayout_Example-dummy.m */, 167 | 7A3BA988000306878EA1BFC180E40549 /* Pods-HorizontalFloatingHeaderLayout_Example-frameworks.sh */, 168 | 23C60ACDF0396F238A2FA45070A7695B /* Pods-HorizontalFloatingHeaderLayout_Example-resources.sh */, 169 | B72DBFDDA5F63BBD21065F4F4F30741F /* Pods-HorizontalFloatingHeaderLayout_Example-umbrella.h */, 170 | C081EC4319EF9AB4CABE80C6D2112C3E /* Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig */, 171 | 53A5FC28CB2F41BA02E7877BD54FA5AE /* Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig */, 172 | ); 173 | name = "Pods-HorizontalFloatingHeaderLayout_Example"; 174 | path = "Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example"; 175 | sourceTree = ""; 176 | }; 177 | 433CD3331B6C3787F473C941B61FC68F /* Frameworks */ = { 178 | isa = PBXGroup; 179 | children = ( 180 | 438B396F6B4147076630CAEFE34282C1 /* iOS */, 181 | ); 182 | name = Frameworks; 183 | sourceTree = ""; 184 | }; 185 | 438B396F6B4147076630CAEFE34282C1 /* iOS */ = { 186 | isa = PBXGroup; 187 | children = ( 188 | D88AAE1F92055A60CC2FC970D7D34634 /* Foundation.framework */, 189 | B63C6A64CF66340668996F78DA6BB482 /* UIKit.framework */, 190 | ); 191 | name = iOS; 192 | sourceTree = ""; 193 | }; 194 | 7DB346D0F39D3F0E887471402A8071AB = { 195 | isa = PBXGroup; 196 | children = ( 197 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 198 | A3B41B11E25CE8D409535067A50761F1 /* Development Pods */, 199 | 433CD3331B6C3787F473C941B61FC68F /* Frameworks */, 200 | 1415428EE5E3F1DA13BA1AB51B46467D /* Products */, 201 | 0233FEBD4D35171261E47DDDDF507EA2 /* Targets Support Files */, 202 | ); 203 | sourceTree = ""; 204 | }; 205 | 8DDB544C21B8B6A20CFDE440D72965AE /* Resources */ = { 206 | isa = PBXGroup; 207 | children = ( 208 | CEC8C55F4483B65F11CB6E6AE3E4F4AA /* storyboard.png */, 209 | ); 210 | name = Resources; 211 | sourceTree = ""; 212 | }; 213 | 9CBC4577FEB0771A494B12914BEDD489 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests */ = { 214 | isa = PBXGroup; 215 | children = ( 216 | F36D140DE861A69977A21E7393FF2F55 /* Info.plist */, 217 | 608A716741CE98AAC30861C222597283 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.modulemap */, 218 | B5FFD2267310C571BD332C6225D690E9 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-acknowledgements.markdown */, 219 | B09316980406E757E7207B5A663C8440 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-acknowledgements.plist */, 220 | F1C0C40F96B58EC8AA1A28A7C254E029 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-dummy.m */, 221 | 02E992475DB6179C6828C9BD30931760 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-frameworks.sh */, 222 | B9B68B33C74280F62780C0AE37A24A70 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-resources.sh */, 223 | 0091FB6F5C808D4AE028F818BFE8BC86 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-umbrella.h */, 224 | D69619647E19B5BF3554DB3909212829 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig */, 225 | A372888C7CDFE0D6B11E7B9AB4C2C72A /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig */, 226 | ); 227 | name = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests"; 228 | path = "Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests"; 229 | sourceTree = ""; 230 | }; 231 | A3B41B11E25CE8D409535067A50761F1 /* Development Pods */ = { 232 | isa = PBXGroup; 233 | children = ( 234 | E43F62CAB07ACD234DCA30462CD79748 /* HorizontalFloatingHeaderLayout */, 235 | ); 236 | name = "Development Pods"; 237 | sourceTree = ""; 238 | }; 239 | E43F62CAB07ACD234DCA30462CD79748 /* HorizontalFloatingHeaderLayout */ = { 240 | isa = PBXGroup; 241 | children = ( 242 | AFADFC5D7BE31B07C03D038DA29D6074 /* HorizontalFloatingHeaderLayout.swift */, 243 | 8DDB544C21B8B6A20CFDE440D72965AE /* Resources */, 244 | 14DEF46CB41E7D6EFB5BD64DD7ADEE8D /* Support Files */, 245 | ); 246 | name = HorizontalFloatingHeaderLayout; 247 | path = ../..; 248 | sourceTree = ""; 249 | }; 250 | /* End PBXGroup section */ 251 | 252 | /* Begin PBXHeadersBuildPhase section */ 253 | A06A5B9D521931CFF96FC915253FF4BA /* Headers */ = { 254 | isa = PBXHeadersBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | AC9915D5AAA655F2F9AA177D7EB2AB0E /* HorizontalFloatingHeaderLayout-umbrella.h in Headers */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | A7872F5E4FFEE98C522911AF2964F676 /* Headers */ = { 262 | isa = PBXHeadersBuildPhase; 263 | buildActionMask = 2147483647; 264 | files = ( 265 | 183DD710FF2C7CE76440DF885DDA4AF0 /* Pods-HorizontalFloatingHeaderLayout_Example-umbrella.h in Headers */, 266 | ); 267 | runOnlyForDeploymentPostprocessing = 0; 268 | }; 269 | DFCD01CFFD1B844F01F1A25CCE54080F /* Headers */ = { 270 | isa = PBXHeadersBuildPhase; 271 | buildActionMask = 2147483647; 272 | files = ( 273 | 765B71B0DEAC48F6FA9149CBD537C743 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-umbrella.h in Headers */, 274 | ); 275 | runOnlyForDeploymentPostprocessing = 0; 276 | }; 277 | /* End PBXHeadersBuildPhase section */ 278 | 279 | /* Begin PBXNativeTarget section */ 280 | 46CD6F308C225BA2E863C3E523C1E400 /* HorizontalFloatingHeaderLayout-HorizontalFloatingHeaderLayout */ = { 281 | isa = PBXNativeTarget; 282 | buildConfigurationList = D2385202F1C0F71F3BBFFA87D63E101D /* Build configuration list for PBXNativeTarget "HorizontalFloatingHeaderLayout-HorizontalFloatingHeaderLayout" */; 283 | buildPhases = ( 284 | 00877DC212119B4ED2E7F62386F8E47D /* Sources */, 285 | 1E3E40A270DFFD220A616DA02EEC34E2 /* Frameworks */, 286 | 0E8022B2E5CECC008C310D1E92288E5B /* Resources */, 287 | ); 288 | buildRules = ( 289 | ); 290 | dependencies = ( 291 | ); 292 | name = "HorizontalFloatingHeaderLayout-HorizontalFloatingHeaderLayout"; 293 | productName = "HorizontalFloatingHeaderLayout-HorizontalFloatingHeaderLayout"; 294 | productReference = C75BB7F20DCFBD0CF57C085BB34D99BF /* HorizontalFloatingHeaderLayout.bundle */; 295 | productType = "com.apple.product-type.bundle"; 296 | }; 297 | 588F0BD421E7C3F9522853F6FFB439B5 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests */ = { 298 | isa = PBXNativeTarget; 299 | buildConfigurationList = B2DE30B24293E8F2BA3D06167D46D16D /* Build configuration list for PBXNativeTarget "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests" */; 300 | buildPhases = ( 301 | A10AE2FAF027F963FE7D0DD1913AAA77 /* Sources */, 302 | D46E19E5B0670FD98FBD6485025D0922 /* Frameworks */, 303 | DFCD01CFFD1B844F01F1A25CCE54080F /* Headers */, 304 | ); 305 | buildRules = ( 306 | ); 307 | dependencies = ( 308 | 7D97FE0DED31586888635F73A7838B7B /* PBXTargetDependency */, 309 | ); 310 | name = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests"; 311 | productName = "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests"; 312 | productReference = 1DE58AE33E74F5A699AE7A067CB23520 /* Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests.framework */; 313 | productType = "com.apple.product-type.framework"; 314 | }; 315 | B0BD9BD700A5FD8B5113C20129BF1542 /* Pods-HorizontalFloatingHeaderLayout_Example */ = { 316 | isa = PBXNativeTarget; 317 | buildConfigurationList = DAC239C652F250C2A9E51C6FB2DCD781 /* Build configuration list for PBXNativeTarget "Pods-HorizontalFloatingHeaderLayout_Example" */; 318 | buildPhases = ( 319 | 8F36BCB583693A4D617C2262DD05B9AB /* Sources */, 320 | 7A962C2A6EF4968AF16DD65ABBC53E1F /* Frameworks */, 321 | A7872F5E4FFEE98C522911AF2964F676 /* Headers */, 322 | ); 323 | buildRules = ( 324 | ); 325 | dependencies = ( 326 | 99191B453909709AD946B0AB0B8B28C0 /* PBXTargetDependency */, 327 | ); 328 | name = "Pods-HorizontalFloatingHeaderLayout_Example"; 329 | productName = "Pods-HorizontalFloatingHeaderLayout_Example"; 330 | productReference = 278BD13B5A45B83CB79CF8EB3C0446D5 /* Pods_HorizontalFloatingHeaderLayout_Example.framework */; 331 | productType = "com.apple.product-type.framework"; 332 | }; 333 | F2FEB198244C1161E741FD1FBD693A83 /* HorizontalFloatingHeaderLayout */ = { 334 | isa = PBXNativeTarget; 335 | buildConfigurationList = 87FB00F83AEB0EBCE494F1DCA4714443 /* Build configuration list for PBXNativeTarget "HorizontalFloatingHeaderLayout" */; 336 | buildPhases = ( 337 | 98160F510A68FE03615142B507E605F9 /* Sources */, 338 | A8B00DDEF42192A4F94557CE2017204C /* Frameworks */, 339 | 64125C9CF3ECE6A1B0A945109EA5D7FE /* Resources */, 340 | A06A5B9D521931CFF96FC915253FF4BA /* Headers */, 341 | ); 342 | buildRules = ( 343 | ); 344 | dependencies = ( 345 | CF0D925B6ADFCB456DBB17619964C3F9 /* PBXTargetDependency */, 346 | ); 347 | name = HorizontalFloatingHeaderLayout; 348 | productName = HorizontalFloatingHeaderLayout; 349 | productReference = 6F8E2BAA62E61386C8A701245698E945 /* HorizontalFloatingHeaderLayout.framework */; 350 | productType = "com.apple.product-type.framework"; 351 | }; 352 | /* End PBXNativeTarget section */ 353 | 354 | /* Begin PBXProject section */ 355 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 356 | isa = PBXProject; 357 | attributes = { 358 | LastSwiftUpdateCheck = 0830; 359 | LastUpgradeCheck = 0920; 360 | }; 361 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 362 | compatibilityVersion = "Xcode 3.2"; 363 | developmentRegion = English; 364 | hasScannedForEncodings = 0; 365 | knownRegions = ( 366 | en, 367 | ); 368 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 369 | productRefGroup = 1415428EE5E3F1DA13BA1AB51B46467D /* Products */; 370 | projectDirPath = ""; 371 | projectRoot = ""; 372 | targets = ( 373 | F2FEB198244C1161E741FD1FBD693A83 /* HorizontalFloatingHeaderLayout */, 374 | 46CD6F308C225BA2E863C3E523C1E400 /* HorizontalFloatingHeaderLayout-HorizontalFloatingHeaderLayout */, 375 | B0BD9BD700A5FD8B5113C20129BF1542 /* Pods-HorizontalFloatingHeaderLayout_Example */, 376 | 588F0BD421E7C3F9522853F6FFB439B5 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests */, 377 | ); 378 | }; 379 | /* End PBXProject section */ 380 | 381 | /* Begin PBXResourcesBuildPhase section */ 382 | 0E8022B2E5CECC008C310D1E92288E5B /* Resources */ = { 383 | isa = PBXResourcesBuildPhase; 384 | buildActionMask = 2147483647; 385 | files = ( 386 | FD3FBBCFCC6621C60FA0E667046CD9AE /* storyboard.png in Resources */, 387 | ); 388 | runOnlyForDeploymentPostprocessing = 0; 389 | }; 390 | 64125C9CF3ECE6A1B0A945109EA5D7FE /* Resources */ = { 391 | isa = PBXResourcesBuildPhase; 392 | buildActionMask = 2147483647; 393 | files = ( 394 | F432BA97545691A962C516E80A3B68D4 /* HorizontalFloatingHeaderLayout.bundle in Resources */, 395 | ); 396 | runOnlyForDeploymentPostprocessing = 0; 397 | }; 398 | /* End PBXResourcesBuildPhase section */ 399 | 400 | /* Begin PBXSourcesBuildPhase section */ 401 | 00877DC212119B4ED2E7F62386F8E47D /* Sources */ = { 402 | isa = PBXSourcesBuildPhase; 403 | buildActionMask = 2147483647; 404 | files = ( 405 | ); 406 | runOnlyForDeploymentPostprocessing = 0; 407 | }; 408 | 8F36BCB583693A4D617C2262DD05B9AB /* Sources */ = { 409 | isa = PBXSourcesBuildPhase; 410 | buildActionMask = 2147483647; 411 | files = ( 412 | BD916D82D1A8D607951848159215F324 /* Pods-HorizontalFloatingHeaderLayout_Example-dummy.m in Sources */, 413 | ); 414 | runOnlyForDeploymentPostprocessing = 0; 415 | }; 416 | 98160F510A68FE03615142B507E605F9 /* Sources */ = { 417 | isa = PBXSourcesBuildPhase; 418 | buildActionMask = 2147483647; 419 | files = ( 420 | F792A491BD4433CC9199206B8217F1E8 /* HorizontalFloatingHeaderLayout-dummy.m in Sources */, 421 | 8B96931BBCE2E5A86130DE4BB222F1A7 /* HorizontalFloatingHeaderLayout.swift in Sources */, 422 | ); 423 | runOnlyForDeploymentPostprocessing = 0; 424 | }; 425 | A10AE2FAF027F963FE7D0DD1913AAA77 /* Sources */ = { 426 | isa = PBXSourcesBuildPhase; 427 | buildActionMask = 2147483647; 428 | files = ( 429 | DDEB4ED4B8000E059C227765B5393739 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-dummy.m in Sources */, 430 | ); 431 | runOnlyForDeploymentPostprocessing = 0; 432 | }; 433 | /* End PBXSourcesBuildPhase section */ 434 | 435 | /* Begin PBXTargetDependency section */ 436 | 7D97FE0DED31586888635F73A7838B7B /* PBXTargetDependency */ = { 437 | isa = PBXTargetDependency; 438 | name = HorizontalFloatingHeaderLayout; 439 | target = F2FEB198244C1161E741FD1FBD693A83 /* HorizontalFloatingHeaderLayout */; 440 | targetProxy = 73ADEB0922E9A4CDFFA291B1EB0E2FAC /* PBXContainerItemProxy */; 441 | }; 442 | 99191B453909709AD946B0AB0B8B28C0 /* PBXTargetDependency */ = { 443 | isa = PBXTargetDependency; 444 | name = HorizontalFloatingHeaderLayout; 445 | target = F2FEB198244C1161E741FD1FBD693A83 /* HorizontalFloatingHeaderLayout */; 446 | targetProxy = 1FAD4F13BA136250B7F5555B7E025D7A /* PBXContainerItemProxy */; 447 | }; 448 | CF0D925B6ADFCB456DBB17619964C3F9 /* PBXTargetDependency */ = { 449 | isa = PBXTargetDependency; 450 | name = "HorizontalFloatingHeaderLayout-HorizontalFloatingHeaderLayout"; 451 | target = 46CD6F308C225BA2E863C3E523C1E400 /* HorizontalFloatingHeaderLayout-HorizontalFloatingHeaderLayout */; 452 | targetProxy = 4E10504E69F7BFFAAA4DBC471D495A22 /* PBXContainerItemProxy */; 453 | }; 454 | /* End PBXTargetDependency section */ 455 | 456 | /* Begin XCBuildConfiguration section */ 457 | 0D5C483260A456B5981F2B6640BC6219 /* Release */ = { 458 | isa = XCBuildConfiguration; 459 | baseConfigurationReference = 94B291D67E5D231013049DB40336D71B /* HorizontalFloatingHeaderLayout.xcconfig */; 460 | buildSettings = { 461 | CODE_SIGN_IDENTITY = ""; 462 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 463 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 464 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 465 | CURRENT_PROJECT_VERSION = 1; 466 | DEFINES_MODULE = YES; 467 | DYLIB_COMPATIBILITY_VERSION = 1; 468 | DYLIB_CURRENT_VERSION = 1; 469 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 470 | GCC_PREFIX_HEADER = "Target Support Files/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout-prefix.pch"; 471 | INFOPLIST_FILE = "Target Support Files/HorizontalFloatingHeaderLayout/Info.plist"; 472 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 473 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 474 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 475 | MODULEMAP_FILE = "Target Support Files/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.modulemap"; 476 | PRODUCT_NAME = HorizontalFloatingHeaderLayout; 477 | SDKROOT = iphoneos; 478 | SKIP_INSTALL = YES; 479 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 480 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 481 | SWIFT_VERSION = 4.0; 482 | TARGETED_DEVICE_FAMILY = "1,2"; 483 | VALIDATE_PRODUCT = YES; 484 | VERSIONING_SYSTEM = "apple-generic"; 485 | VERSION_INFO_PREFIX = ""; 486 | }; 487 | name = Release; 488 | }; 489 | 318BBD18453152E8646E3168DDE9602D /* Debug */ = { 490 | isa = XCBuildConfiguration; 491 | baseConfigurationReference = D69619647E19B5BF3554DB3909212829 /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig */; 492 | buildSettings = { 493 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 494 | CODE_SIGN_IDENTITY = ""; 495 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 496 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 497 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 498 | CURRENT_PROJECT_VERSION = 1; 499 | DEFINES_MODULE = YES; 500 | DYLIB_COMPATIBILITY_VERSION = 1; 501 | DYLIB_CURRENT_VERSION = 1; 502 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 503 | INFOPLIST_FILE = "Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Info.plist"; 504 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 505 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 506 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 507 | MACH_O_TYPE = staticlib; 508 | MODULEMAP_FILE = "Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.modulemap"; 509 | OTHER_LDFLAGS = ""; 510 | OTHER_LIBTOOLFLAGS = ""; 511 | PODS_ROOT = "$(SRCROOT)"; 512 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 513 | PRODUCT_NAME = Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests; 514 | SDKROOT = iphoneos; 515 | SKIP_INSTALL = YES; 516 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 517 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 518 | TARGETED_DEVICE_FAMILY = "1,2"; 519 | VERSIONING_SYSTEM = "apple-generic"; 520 | VERSION_INFO_PREFIX = ""; 521 | }; 522 | name = Debug; 523 | }; 524 | 56D3D7870CC42D4747B7BF2BBC4AACB0 /* Debug */ = { 525 | isa = XCBuildConfiguration; 526 | baseConfigurationReference = 94B291D67E5D231013049DB40336D71B /* HorizontalFloatingHeaderLayout.xcconfig */; 527 | buildSettings = { 528 | CODE_SIGN_IDENTITY = ""; 529 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 530 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 531 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 532 | CURRENT_PROJECT_VERSION = 1; 533 | DEFINES_MODULE = YES; 534 | DYLIB_COMPATIBILITY_VERSION = 1; 535 | DYLIB_CURRENT_VERSION = 1; 536 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 537 | GCC_PREFIX_HEADER = "Target Support Files/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout-prefix.pch"; 538 | INFOPLIST_FILE = "Target Support Files/HorizontalFloatingHeaderLayout/Info.plist"; 539 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 540 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 541 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 542 | MODULEMAP_FILE = "Target Support Files/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.modulemap"; 543 | PRODUCT_NAME = HorizontalFloatingHeaderLayout; 544 | SDKROOT = iphoneos; 545 | SKIP_INSTALL = YES; 546 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 547 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 548 | SWIFT_VERSION = 4.0; 549 | TARGETED_DEVICE_FAMILY = "1,2"; 550 | VERSIONING_SYSTEM = "apple-generic"; 551 | VERSION_INFO_PREFIX = ""; 552 | }; 553 | name = Debug; 554 | }; 555 | 6E51F19D63D290715A621FCAEBFEED1A /* Release */ = { 556 | isa = XCBuildConfiguration; 557 | baseConfigurationReference = 94B291D67E5D231013049DB40336D71B /* HorizontalFloatingHeaderLayout.xcconfig */; 558 | buildSettings = { 559 | CODE_SIGN_IDENTITY = "iPhone Developer"; 560 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/HorizontalFloatingHeaderLayout"; 561 | INFOPLIST_FILE = "Target Support Files/HorizontalFloatingHeaderLayout/ResourceBundle-HorizontalFloatingHeaderLayout-Info.plist"; 562 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 563 | PRODUCT_NAME = HorizontalFloatingHeaderLayout; 564 | SDKROOT = iphoneos; 565 | SKIP_INSTALL = YES; 566 | TARGETED_DEVICE_FAMILY = "1,2"; 567 | WRAPPER_EXTENSION = bundle; 568 | }; 569 | name = Release; 570 | }; 571 | 76CB08E86E6C69CF47C78D7B491463B3 /* Debug */ = { 572 | isa = XCBuildConfiguration; 573 | baseConfigurationReference = 94B291D67E5D231013049DB40336D71B /* HorizontalFloatingHeaderLayout.xcconfig */; 574 | buildSettings = { 575 | CODE_SIGN_IDENTITY = "iPhone Developer"; 576 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/HorizontalFloatingHeaderLayout"; 577 | INFOPLIST_FILE = "Target Support Files/HorizontalFloatingHeaderLayout/ResourceBundle-HorizontalFloatingHeaderLayout-Info.plist"; 578 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 579 | PRODUCT_NAME = HorizontalFloatingHeaderLayout; 580 | SDKROOT = iphoneos; 581 | SKIP_INSTALL = YES; 582 | TARGETED_DEVICE_FAMILY = "1,2"; 583 | WRAPPER_EXTENSION = bundle; 584 | }; 585 | name = Debug; 586 | }; 587 | 7C07ED8089F70A31B83996A8910D7F18 /* Debug */ = { 588 | isa = XCBuildConfiguration; 589 | buildSettings = { 590 | ALWAYS_SEARCH_USER_PATHS = NO; 591 | CLANG_ANALYZER_NONNULL = YES; 592 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 593 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 594 | CLANG_CXX_LIBRARY = "libc++"; 595 | CLANG_ENABLE_MODULES = YES; 596 | CLANG_ENABLE_OBJC_ARC = YES; 597 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 598 | CLANG_WARN_BOOL_CONVERSION = YES; 599 | CLANG_WARN_COMMA = YES; 600 | CLANG_WARN_CONSTANT_CONVERSION = YES; 601 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 602 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 603 | CLANG_WARN_EMPTY_BODY = YES; 604 | CLANG_WARN_ENUM_CONVERSION = YES; 605 | CLANG_WARN_INFINITE_RECURSION = YES; 606 | CLANG_WARN_INT_CONVERSION = YES; 607 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 608 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 609 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 610 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 611 | CLANG_WARN_STRICT_PROTOTYPES = YES; 612 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 613 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 614 | CLANG_WARN_UNREACHABLE_CODE = YES; 615 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 616 | CODE_SIGNING_REQUIRED = NO; 617 | COPY_PHASE_STRIP = NO; 618 | DEBUG_INFORMATION_FORMAT = dwarf; 619 | ENABLE_STRICT_OBJC_MSGSEND = YES; 620 | ENABLE_TESTABILITY = YES; 621 | GCC_C_LANGUAGE_STANDARD = gnu11; 622 | GCC_DYNAMIC_NO_PIC = NO; 623 | GCC_NO_COMMON_BLOCKS = YES; 624 | GCC_OPTIMIZATION_LEVEL = 0; 625 | GCC_PREPROCESSOR_DEFINITIONS = ( 626 | "POD_CONFIGURATION_DEBUG=1", 627 | "DEBUG=1", 628 | "$(inherited)", 629 | ); 630 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 631 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 632 | GCC_WARN_UNDECLARED_SELECTOR = YES; 633 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 634 | GCC_WARN_UNUSED_FUNCTION = YES; 635 | GCC_WARN_UNUSED_VARIABLE = YES; 636 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 637 | MTL_ENABLE_DEBUG_INFO = YES; 638 | ONLY_ACTIVE_ARCH = YES; 639 | PRODUCT_NAME = "$(TARGET_NAME)"; 640 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 641 | STRIP_INSTALLED_PRODUCT = NO; 642 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 643 | SYMROOT = "${SRCROOT}/../build"; 644 | }; 645 | name = Debug; 646 | }; 647 | 95CBC8B3EC806B35FB837F20CF95EE03 /* Release */ = { 648 | isa = XCBuildConfiguration; 649 | baseConfigurationReference = 53A5FC28CB2F41BA02E7877BD54FA5AE /* Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig */; 650 | buildSettings = { 651 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 652 | CODE_SIGN_IDENTITY = ""; 653 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 654 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 655 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 656 | CURRENT_PROJECT_VERSION = 1; 657 | DEFINES_MODULE = YES; 658 | DYLIB_COMPATIBILITY_VERSION = 1; 659 | DYLIB_CURRENT_VERSION = 1; 660 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 661 | INFOPLIST_FILE = "Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Info.plist"; 662 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 663 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 664 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 665 | MACH_O_TYPE = staticlib; 666 | MODULEMAP_FILE = "Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example.modulemap"; 667 | OTHER_LDFLAGS = ""; 668 | OTHER_LIBTOOLFLAGS = ""; 669 | PODS_ROOT = "$(SRCROOT)"; 670 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 671 | PRODUCT_NAME = Pods_HorizontalFloatingHeaderLayout_Example; 672 | SDKROOT = iphoneos; 673 | SKIP_INSTALL = YES; 674 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 675 | TARGETED_DEVICE_FAMILY = "1,2"; 676 | VALIDATE_PRODUCT = YES; 677 | VERSIONING_SYSTEM = "apple-generic"; 678 | VERSION_INFO_PREFIX = ""; 679 | }; 680 | name = Release; 681 | }; 682 | 98F29E7567052F62660DDD7069ADF73C /* Release */ = { 683 | isa = XCBuildConfiguration; 684 | buildSettings = { 685 | ALWAYS_SEARCH_USER_PATHS = NO; 686 | CLANG_ANALYZER_NONNULL = YES; 687 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 688 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 689 | CLANG_CXX_LIBRARY = "libc++"; 690 | CLANG_ENABLE_MODULES = YES; 691 | CLANG_ENABLE_OBJC_ARC = YES; 692 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 693 | CLANG_WARN_BOOL_CONVERSION = YES; 694 | CLANG_WARN_COMMA = YES; 695 | CLANG_WARN_CONSTANT_CONVERSION = YES; 696 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 697 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 698 | CLANG_WARN_EMPTY_BODY = YES; 699 | CLANG_WARN_ENUM_CONVERSION = YES; 700 | CLANG_WARN_INFINITE_RECURSION = YES; 701 | CLANG_WARN_INT_CONVERSION = YES; 702 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 703 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 704 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 705 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 706 | CLANG_WARN_STRICT_PROTOTYPES = YES; 707 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 708 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 709 | CLANG_WARN_UNREACHABLE_CODE = YES; 710 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 711 | CODE_SIGNING_REQUIRED = NO; 712 | COPY_PHASE_STRIP = NO; 713 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 714 | ENABLE_NS_ASSERTIONS = NO; 715 | ENABLE_STRICT_OBJC_MSGSEND = YES; 716 | GCC_C_LANGUAGE_STANDARD = gnu11; 717 | GCC_NO_COMMON_BLOCKS = YES; 718 | GCC_PREPROCESSOR_DEFINITIONS = ( 719 | "POD_CONFIGURATION_RELEASE=1", 720 | "$(inherited)", 721 | ); 722 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 723 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 724 | GCC_WARN_UNDECLARED_SELECTOR = YES; 725 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 726 | GCC_WARN_UNUSED_FUNCTION = YES; 727 | GCC_WARN_UNUSED_VARIABLE = YES; 728 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 729 | MTL_ENABLE_DEBUG_INFO = NO; 730 | PRODUCT_NAME = "$(TARGET_NAME)"; 731 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 732 | STRIP_INSTALLED_PRODUCT = NO; 733 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 734 | SYMROOT = "${SRCROOT}/../build"; 735 | }; 736 | name = Release; 737 | }; 738 | 9996B1506D7D20A7ABD4E5E89DB6CC64 /* Release */ = { 739 | isa = XCBuildConfiguration; 740 | baseConfigurationReference = A372888C7CDFE0D6B11E7B9AB4C2C72A /* Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig */; 741 | buildSettings = { 742 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 743 | CODE_SIGN_IDENTITY = ""; 744 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 745 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 746 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 747 | CURRENT_PROJECT_VERSION = 1; 748 | DEFINES_MODULE = YES; 749 | DYLIB_COMPATIBILITY_VERSION = 1; 750 | DYLIB_CURRENT_VERSION = 1; 751 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 752 | INFOPLIST_FILE = "Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Info.plist"; 753 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 754 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 755 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 756 | MACH_O_TYPE = staticlib; 757 | MODULEMAP_FILE = "Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.modulemap"; 758 | OTHER_LDFLAGS = ""; 759 | OTHER_LIBTOOLFLAGS = ""; 760 | PODS_ROOT = "$(SRCROOT)"; 761 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 762 | PRODUCT_NAME = Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests; 763 | SDKROOT = iphoneos; 764 | SKIP_INSTALL = YES; 765 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 766 | TARGETED_DEVICE_FAMILY = "1,2"; 767 | VALIDATE_PRODUCT = YES; 768 | VERSIONING_SYSTEM = "apple-generic"; 769 | VERSION_INFO_PREFIX = ""; 770 | }; 771 | name = Release; 772 | }; 773 | FE460BA3122159B6056C8F971611DF6C /* Debug */ = { 774 | isa = XCBuildConfiguration; 775 | baseConfigurationReference = C081EC4319EF9AB4CABE80C6D2112C3E /* Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig */; 776 | buildSettings = { 777 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 778 | CODE_SIGN_IDENTITY = ""; 779 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 780 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 781 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 782 | CURRENT_PROJECT_VERSION = 1; 783 | DEFINES_MODULE = YES; 784 | DYLIB_COMPATIBILITY_VERSION = 1; 785 | DYLIB_CURRENT_VERSION = 1; 786 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 787 | INFOPLIST_FILE = "Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Info.plist"; 788 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 789 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 790 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 791 | MACH_O_TYPE = staticlib; 792 | MODULEMAP_FILE = "Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example.modulemap"; 793 | OTHER_LDFLAGS = ""; 794 | OTHER_LIBTOOLFLAGS = ""; 795 | PODS_ROOT = "$(SRCROOT)"; 796 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 797 | PRODUCT_NAME = Pods_HorizontalFloatingHeaderLayout_Example; 798 | SDKROOT = iphoneos; 799 | SKIP_INSTALL = YES; 800 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 801 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 802 | TARGETED_DEVICE_FAMILY = "1,2"; 803 | VERSIONING_SYSTEM = "apple-generic"; 804 | VERSION_INFO_PREFIX = ""; 805 | }; 806 | name = Debug; 807 | }; 808 | /* End XCBuildConfiguration section */ 809 | 810 | /* Begin XCConfigurationList section */ 811 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 812 | isa = XCConfigurationList; 813 | buildConfigurations = ( 814 | 7C07ED8089F70A31B83996A8910D7F18 /* Debug */, 815 | 98F29E7567052F62660DDD7069ADF73C /* Release */, 816 | ); 817 | defaultConfigurationIsVisible = 0; 818 | defaultConfigurationName = Release; 819 | }; 820 | 87FB00F83AEB0EBCE494F1DCA4714443 /* Build configuration list for PBXNativeTarget "HorizontalFloatingHeaderLayout" */ = { 821 | isa = XCConfigurationList; 822 | buildConfigurations = ( 823 | 56D3D7870CC42D4747B7BF2BBC4AACB0 /* Debug */, 824 | 0D5C483260A456B5981F2B6640BC6219 /* Release */, 825 | ); 826 | defaultConfigurationIsVisible = 0; 827 | defaultConfigurationName = Release; 828 | }; 829 | B2DE30B24293E8F2BA3D06167D46D16D /* Build configuration list for PBXNativeTarget "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests" */ = { 830 | isa = XCConfigurationList; 831 | buildConfigurations = ( 832 | 318BBD18453152E8646E3168DDE9602D /* Debug */, 833 | 9996B1506D7D20A7ABD4E5E89DB6CC64 /* Release */, 834 | ); 835 | defaultConfigurationIsVisible = 0; 836 | defaultConfigurationName = Release; 837 | }; 838 | D2385202F1C0F71F3BBFFA87D63E101D /* Build configuration list for PBXNativeTarget "HorizontalFloatingHeaderLayout-HorizontalFloatingHeaderLayout" */ = { 839 | isa = XCConfigurationList; 840 | buildConfigurations = ( 841 | 76CB08E86E6C69CF47C78D7B491463B3 /* Debug */, 842 | 6E51F19D63D290715A621FCAEBFEED1A /* Release */, 843 | ); 844 | defaultConfigurationIsVisible = 0; 845 | defaultConfigurationName = Release; 846 | }; 847 | DAC239C652F250C2A9E51C6FB2DCD781 /* Build configuration list for PBXNativeTarget "Pods-HorizontalFloatingHeaderLayout_Example" */ = { 848 | isa = XCConfigurationList; 849 | buildConfigurations = ( 850 | FE460BA3122159B6056C8F971611DF6C /* Debug */, 851 | 95CBC8B3EC806B35FB837F20CF95EE03 /* Release */, 852 | ); 853 | defaultConfigurationIsVisible = 0; 854 | defaultConfigurationName = Release; 855 | }; 856 | /* End XCConfigurationList section */ 857 | }; 858 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 859 | } 860 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_HorizontalFloatingHeaderLayout : NSObject 3 | @end 4 | @implementation PodsDummy_HorizontalFloatingHeaderLayout 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout-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/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout-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 HorizontalFloatingHeaderLayoutVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char HorizontalFloatingHeaderLayoutVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.modulemap: -------------------------------------------------------------------------------- 1 | framework module HorizontalFloatingHeaderLayout { 2 | umbrella header "HorizontalFloatingHeaderLayout-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/HorizontalFloatingHeaderLayout 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "UIKit" 5 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HorizontalFloatingHeaderLayout/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/HorizontalFloatingHeaderLayout/ResourceBundle-HorizontalFloatingHeaderLayout-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleIdentifier 8 | ${PRODUCT_BUNDLE_IDENTIFIER} 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | ${PRODUCT_NAME} 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## HorizontalFloatingHeaderLayout 5 | 6 | Copyright (c) 2015 Diego Cruz 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-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2015 Diego Cruz <diego.cruz@icloud.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 | HorizontalFloatingHeaderLayout 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-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 10 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 11 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 12 | 13 | install_framework() 14 | { 15 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 16 | local source="${BUILT_PRODUCTS_DIR}/$1" 17 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 18 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 19 | elif [ -r "$1" ]; then 20 | local source="$1" 21 | fi 22 | 23 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | 25 | if [ -L "${source}" ]; then 26 | echo "Symlinked..." 27 | source="$(readlink "${source}")" 28 | fi 29 | 30 | # Use filter instead of exclude so missing patterns don't throw errors. 31 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 32 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 33 | 34 | local basename 35 | basename="$(basename -s .framework "$1")" 36 | binary="${destination}/${basename}.framework/${basename}" 37 | if ! [ -r "$binary" ]; then 38 | binary="${destination}/${basename}" 39 | fi 40 | 41 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 42 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 43 | strip_invalid_archs "$binary" 44 | fi 45 | 46 | # Resign the code if required by the build settings to avoid unstable apps 47 | code_sign_if_enabled "${destination}/$(basename "$1")" 48 | 49 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 50 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 51 | local swift_runtime_libs 52 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 53 | for lib in $swift_runtime_libs; do 54 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 55 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 56 | code_sign_if_enabled "${destination}/${lib}" 57 | done 58 | fi 59 | } 60 | 61 | # Copies the dSYM of a vendored framework 62 | install_dsym() { 63 | local source="$1" 64 | if [ -r "$source" ]; then 65 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\"" 66 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}" 67 | fi 68 | } 69 | 70 | # Signs a framework with the provided identity 71 | code_sign_if_enabled() { 72 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 73 | # Use the current code_sign_identitiy 74 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 75 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 76 | 77 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 78 | code_sign_cmd="$code_sign_cmd &" 79 | fi 80 | echo "$code_sign_cmd" 81 | eval "$code_sign_cmd" 82 | fi 83 | } 84 | 85 | # Strip invalid architectures 86 | strip_invalid_archs() { 87 | binary="$1" 88 | # Get architectures for current file 89 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 90 | stripped="" 91 | for arch in $archs; do 92 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 93 | # Strip non-valid architectures in-place 94 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 95 | stripped="$stripped $arch" 96 | fi 97 | done 98 | if [[ "$stripped" ]]; then 99 | echo "Stripped $binary of architectures:$stripped" 100 | fi 101 | } 102 | 103 | 104 | if [[ "$CONFIGURATION" == "Debug" ]]; then 105 | install_framework "${BUILT_PRODUCTS_DIR}/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.framework" 106 | fi 107 | if [[ "$CONFIGURATION" == "Release" ]]; then 108 | install_framework "${BUILT_PRODUCTS_DIR}/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.framework" 109 | fi 110 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 111 | wait 112 | fi 113 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 12 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 13 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 14 | 15 | case "${TARGETED_DEVICE_FAMILY}" in 16 | 1,2) 17 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 18 | ;; 19 | 1) 20 | TARGET_DEVICE_ARGS="--target-device iphone" 21 | ;; 22 | 2) 23 | TARGET_DEVICE_ARGS="--target-device ipad" 24 | ;; 25 | 3) 26 | TARGET_DEVICE_ARGS="--target-device tv" 27 | ;; 28 | 4) 29 | TARGET_DEVICE_ARGS="--target-device watch" 30 | ;; 31 | *) 32 | TARGET_DEVICE_ARGS="--target-device mac" 33 | ;; 34 | esac 35 | 36 | install_resource() 37 | { 38 | if [[ "$1" = /* ]] ; then 39 | RESOURCE_PATH="$1" 40 | else 41 | RESOURCE_PATH="${PODS_ROOT}/$1" 42 | fi 43 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 44 | cat << EOM 45 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 46 | EOM 47 | exit 1 48 | fi 49 | case $RESOURCE_PATH in 50 | *.storyboard) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.xib) 55 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 56 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 57 | ;; 58 | *.framework) 59 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 60 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 61 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 62 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 63 | ;; 64 | *.xcdatamodel) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 67 | ;; 68 | *.xcdatamodeld) 69 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 70 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 71 | ;; 72 | *.xcmappingmodel) 73 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 74 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 75 | ;; 76 | *.xcassets) 77 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 78 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 79 | ;; 80 | *) 81 | echo "$RESOURCE_PATH" || true 82 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 83 | ;; 84 | esac 85 | } 86 | 87 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 89 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 90 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 91 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 92 | fi 93 | rm -f "$RESOURCES_TO_COPY" 94 | 95 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 96 | then 97 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 98 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 99 | while read line; do 100 | if [[ $line != "${PODS_ROOT}*" ]]; then 101 | XCASSET_FILES+=("$line") 102 | fi 103 | done <<<"$OTHER_XCASSETS" 104 | 105 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 106 | fi 107 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/HorizontalFloatingHeaderLayout" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "HorizontalFloatingHeaderLayout" 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-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_HorizontalFloatingHeaderLayout_Example_HorizontalFloatingHeaderLayout_Tests { 2 | umbrella header "Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests/Pods-HorizontalFloatingHeaderLayout_Example-HorizontalFloatingHeaderLayout_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/HorizontalFloatingHeaderLayout" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "HorizontalFloatingHeaderLayout" 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-HorizontalFloatingHeaderLayout_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-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## HorizontalFloatingHeaderLayout 5 | 6 | Copyright (c) 2015 Diego Cruz 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-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_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) 2015 Diego Cruz <diego.cruz@icloud.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 | HorizontalFloatingHeaderLayout 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-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_HorizontalFloatingHeaderLayout_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_HorizontalFloatingHeaderLayout_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 10 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 11 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 12 | 13 | install_framework() 14 | { 15 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 16 | local source="${BUILT_PRODUCTS_DIR}/$1" 17 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 18 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 19 | elif [ -r "$1" ]; then 20 | local source="$1" 21 | fi 22 | 23 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | 25 | if [ -L "${source}" ]; then 26 | echo "Symlinked..." 27 | source="$(readlink "${source}")" 28 | fi 29 | 30 | # Use filter instead of exclude so missing patterns don't throw errors. 31 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 32 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 33 | 34 | local basename 35 | basename="$(basename -s .framework "$1")" 36 | binary="${destination}/${basename}.framework/${basename}" 37 | if ! [ -r "$binary" ]; then 38 | binary="${destination}/${basename}" 39 | fi 40 | 41 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 42 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 43 | strip_invalid_archs "$binary" 44 | fi 45 | 46 | # Resign the code if required by the build settings to avoid unstable apps 47 | code_sign_if_enabled "${destination}/$(basename "$1")" 48 | 49 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 50 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 51 | local swift_runtime_libs 52 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 53 | for lib in $swift_runtime_libs; do 54 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 55 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 56 | code_sign_if_enabled "${destination}/${lib}" 57 | done 58 | fi 59 | } 60 | 61 | # Copies the dSYM of a vendored framework 62 | install_dsym() { 63 | local source="$1" 64 | if [ -r "$source" ]; then 65 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\"" 66 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}" 67 | fi 68 | } 69 | 70 | # Signs a framework with the provided identity 71 | code_sign_if_enabled() { 72 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 73 | # Use the current code_sign_identitiy 74 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 75 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 76 | 77 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 78 | code_sign_cmd="$code_sign_cmd &" 79 | fi 80 | echo "$code_sign_cmd" 81 | eval "$code_sign_cmd" 82 | fi 83 | } 84 | 85 | # Strip invalid architectures 86 | strip_invalid_archs() { 87 | binary="$1" 88 | # Get architectures for current file 89 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 90 | stripped="" 91 | for arch in $archs; do 92 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 93 | # Strip non-valid architectures in-place 94 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 95 | stripped="$stripped $arch" 96 | fi 97 | done 98 | if [[ "$stripped" ]]; then 99 | echo "Stripped $binary of architectures:$stripped" 100 | fi 101 | } 102 | 103 | 104 | if [[ "$CONFIGURATION" == "Debug" ]]; then 105 | install_framework "${BUILT_PRODUCTS_DIR}/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.framework" 106 | fi 107 | if [[ "$CONFIGURATION" == "Release" ]]; then 108 | install_framework "${BUILT_PRODUCTS_DIR}/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.framework" 109 | fi 110 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 111 | wait 112 | fi 113 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 12 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 13 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 14 | 15 | case "${TARGETED_DEVICE_FAMILY}" in 16 | 1,2) 17 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 18 | ;; 19 | 1) 20 | TARGET_DEVICE_ARGS="--target-device iphone" 21 | ;; 22 | 2) 23 | TARGET_DEVICE_ARGS="--target-device ipad" 24 | ;; 25 | 3) 26 | TARGET_DEVICE_ARGS="--target-device tv" 27 | ;; 28 | 4) 29 | TARGET_DEVICE_ARGS="--target-device watch" 30 | ;; 31 | *) 32 | TARGET_DEVICE_ARGS="--target-device mac" 33 | ;; 34 | esac 35 | 36 | install_resource() 37 | { 38 | if [[ "$1" = /* ]] ; then 39 | RESOURCE_PATH="$1" 40 | else 41 | RESOURCE_PATH="${PODS_ROOT}/$1" 42 | fi 43 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 44 | cat << EOM 45 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 46 | EOM 47 | exit 1 48 | fi 49 | case $RESOURCE_PATH in 50 | *.storyboard) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.xib) 55 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 56 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 57 | ;; 58 | *.framework) 59 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 60 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 61 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 62 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 63 | ;; 64 | *.xcdatamodel) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 67 | ;; 68 | *.xcdatamodeld) 69 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 70 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 71 | ;; 72 | *.xcmappingmodel) 73 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 74 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 75 | ;; 76 | *.xcassets) 77 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 78 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 79 | ;; 80 | *) 81 | echo "$RESOURCE_PATH" || true 82 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 83 | ;; 84 | esac 85 | } 86 | 87 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 89 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 90 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 91 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 92 | fi 93 | rm -f "$RESOURCES_TO_COPY" 94 | 95 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 96 | then 97 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 98 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 99 | while read line; do 100 | if [[ $line != "${PODS_ROOT}*" ]]; then 101 | XCASSET_FILES+=("$line") 102 | fi 103 | done <<<"$OTHER_XCASSETS" 104 | 105 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 106 | fi 107 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_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_HorizontalFloatingHeaderLayout_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_HorizontalFloatingHeaderLayout_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/HorizontalFloatingHeaderLayout" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "HorizontalFloatingHeaderLayout" 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-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_HorizontalFloatingHeaderLayout_Example { 2 | umbrella header "Pods-HorizontalFloatingHeaderLayout_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HorizontalFloatingHeaderLayout_Example/Pods-HorizontalFloatingHeaderLayout_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/HorizontalFloatingHeaderLayout" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/HorizontalFloatingHeaderLayout/HorizontalFloatingHeaderLayout.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "HorizontalFloatingHeaderLayout" 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/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import XCTest 3 | import HorizontalFloatingHeaderLayout 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | measure { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /HorizontalFloatingHeaderLayout.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint HorizontalFloatingHeaderLayout.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = "HorizontalFloatingHeaderLayout" 11 | s.version = "2.0.0" 12 | s.summary = "Floating headers with horizontal scrolling layout for UICollectionView, inspired by iOS native Emoji Keyboard layout" 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | s.description = <<-DESC 20 | HorizontalFLoatingHeaderLayout is a subclass of UICollectionViewLayout built with performance in mind. Born from the need for replicating UITableView's sticky headers behavior and iOS 8+ native Emoji keyboard. 21 | 22 | For a vertical implementation, you can turn on *sectionHeadersPinToVisibleBounds* flag from UICollectionViewFlowLayout (available since iOS 9.0) 23 | DESC 24 | 25 | s.homepage = "https://github.com/cruzdiego/HorizontalFloatingHeaderLayout" 26 | # s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" 27 | s.license = 'MIT' 28 | s.author = { "Diego Cruz" => "diego.cruz@icloud.com" } 29 | s.source = { :git => "https://github.com/cruzdiego/HorizontalFloatingHeaderLayout.git", :tag => s.version.to_s } 30 | # s.social_media_url = 'https://twitter.com/' 31 | 32 | s.platform = :ios, '9.0' 33 | s.requires_arc = true 34 | 35 | s.source_files = 'Pod/Classes/**/*' 36 | s.resource_bundles = { 37 | 'HorizontalFloatingHeaderLayout' => ['Pod/Assets/*.png'] 38 | } 39 | 40 | # s.public_header_files = 'Pod/Classes/**/*.h' 41 | s.frameworks = 'UIKit' 42 | # s.dependency 'AFNetworking', '~> 2.3' 43 | end 44 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 Diego Cruz 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 | -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruzdiego/HorizontalFloatingHeaderLayout/9b6b4c19bbecc1b6fb3533308e7b1d46062c65ef/Pod/Assets/.gitkeep -------------------------------------------------------------------------------- /Pod/Assets/Example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruzdiego/HorizontalFloatingHeaderLayout/9b6b4c19bbecc1b6fb3533308e7b1d46062c65ef/Pod/Assets/Example.gif -------------------------------------------------------------------------------- /Pod/Assets/storyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruzdiego/HorizontalFloatingHeaderLayout/9b6b4c19bbecc1b6fb3533308e7b1d46062c65ef/Pod/Assets/storyboard.png -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruzdiego/HorizontalFloatingHeaderLayout/9b6b4c19bbecc1b6fb3533308e7b1d46062c65ef/Pod/Classes/.gitkeep -------------------------------------------------------------------------------- /Pod/Classes/HorizontalFloatingHeaderLayout.swift: -------------------------------------------------------------------------------- 1 | // 2 | // HorizontalFloatingHeaderLayout.swift 3 | // Pods 4 | // 5 | // Created by Diego Alberto Cruz Castillo on 12/30/15. 6 | // 7 | // 8 | 9 | import UIKit 10 | 11 | @objc public protocol HorizontalFloatingHeaderLayoutDelegate: class{ 12 | //Item size 13 | func collectionView(_ collectionView: UICollectionView,horizontalFloatingHeaderItemSizeAt indexPath:IndexPath) -> CGSize 14 | 15 | //Header size 16 | func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderSizeAt section: Int) -> CGSize 17 | 18 | //Section Inset 19 | @objc optional func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderSectionInsetAt section: Int) -> UIEdgeInsets 20 | 21 | //Item Spacing 22 | @objc optional func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderItemSpacingForSectionAt section: Int) -> CGFloat 23 | 24 | //Line Spacing 25 | @objc optional func collectionView(_ collectionView: UICollectionView,horizontalFloatingHeaderColumnSpacingForSectionAt section: Int) -> CGFloat 26 | } 27 | 28 | public class HorizontalFloatingHeaderLayout: UICollectionViewLayout { 29 | //MARK: - Properties 30 | public override var collectionViewContentSize: CGSize { 31 | get{ 32 | return getContentSize() 33 | } 34 | } 35 | 36 | //MARK: Headers properties 37 | //Variables 38 | private var sectionHeadersAttributes: [IndexPath:UICollectionViewLayoutAttributes]{ 39 | get{ 40 | return getSectionHeadersAttributes() 41 | } 42 | } 43 | //MARK: Items properties 44 | //Variables 45 | private var itemsAttributes = [IndexPath:UICollectionViewLayoutAttributes]() 46 | //PrepareItemsAtributes only 47 | private var currentMinX:CGFloat = 0 48 | private var currentMinY:CGFloat = 0 49 | private var currentMaxX:CGFloat = 0 50 | 51 | //MARK: - PrepareForLayout methods 52 | public override func prepare() { 53 | prepareItemsAttributes() 54 | } 55 | 56 | //Items 57 | private func prepareItemsAttributes(){ 58 | func resetAttributes(){ 59 | itemsAttributes.removeAll() 60 | currentMinX = 0 61 | currentMaxX = 0 62 | currentMinY = 0 63 | } 64 | 65 | func configureVariables(forSection section:Int){ 66 | let sectionInset = inset(ForSection: section) 67 | let lastSectionInset = inset(ForSection: section - 1) 68 | currentMinX = (currentMaxX + sectionInset.left + lastSectionInset.right) 69 | currentMinY = sectionInset.top + headerSize(forSection: section).height 70 | currentMaxX = 0.0 71 | } 72 | 73 | func itemAttribute(at indexPath:IndexPath)->UICollectionViewLayoutAttributes{ 74 | //Applying corrected layout 75 | func newLineOrigin(size:CGSize)->CGPoint{ 76 | var origin = CGPoint.zero 77 | origin.x = currentMaxX + columnSpacing(forSection: indexPath.section) 78 | origin.y = inset(ForSection: indexPath.section).top + headerSize(forSection: indexPath.section).height 79 | return origin 80 | } 81 | 82 | func sameLineOrigin(size:CGSize)->CGPoint{ 83 | var origin = CGPoint.zero 84 | origin.x = currentMinX 85 | origin.y = currentMinY 86 | return origin 87 | } 88 | 89 | func updateVariables(itemFrame frame:CGRect){ 90 | currentMaxX = max(currentMaxX,frame.maxX) 91 | currentMinX = frame.minX 92 | currentMinY = frame.maxY + itemSpacing(forSection: indexPath.section) 93 | } 94 | 95 | // 96 | let size = itemSize(for: indexPath) 97 | let newMaxY = currentMinY + size.height 98 | let origin:CGPoint 99 | if newMaxY > availableHeight(atSection: indexPath.section){ 100 | origin = newLineOrigin(size: size) 101 | }else{ 102 | origin = sameLineOrigin(size: size) 103 | } 104 | let frame = CGRect(x:origin.x, y:origin.y, width:size.width, height:size.height) 105 | let attribute = UICollectionViewLayoutAttributes(forCellWith: indexPath) 106 | attribute.frame = frame 107 | updateVariables(itemFrame: frame) 108 | return attribute 109 | } 110 | 111 | // 112 | guard let collectionView = collectionView else { 113 | return 114 | } 115 | 116 | resetAttributes() 117 | let sectionCount = collectionView.numberOfSections 118 | guard sectionCount > 0 else { 119 | return 120 | } 121 | 122 | for section in 0.. 0 else { 126 | continue 127 | } 128 | 129 | for index in 0.. [UICollectionViewLayoutAttributes]? { 139 | func attributes(_ attributes:[IndexPath:UICollectionViewLayoutAttributes],containedIn rect:CGRect) -> [UICollectionViewLayoutAttributes]{ 140 | var finalAttributes = [UICollectionViewLayoutAttributes]() 141 | for (_,attribute) in attributes{ 142 | if rect.intersects(attribute.frame){ 143 | finalAttributes.append(attribute) 144 | } 145 | } 146 | 147 | return finalAttributes 148 | } 149 | 150 | // 151 | let itemsA = attributes(itemsAttributes, containedIn: rect) 152 | let headersA = Array(sectionHeadersAttributes.values) 153 | return itemsA + headersA 154 | } 155 | 156 | //MARK: - ContentSize methods 157 | private func getContentSize() -> CGSize { 158 | guard let collectionView = collectionView else { 159 | return CGSize.zero 160 | } 161 | 162 | func lastItemMaxX()->CGFloat{ 163 | let lastSection = collectionView.numberOfSections - 1 164 | let lastIndexInSection = collectionView.numberOfItems(inSection:lastSection) - 1 165 | if let lastItemAttributes = layoutAttributesForItem(at: IndexPath(row: lastIndexInSection, section: lastSection)){ 166 | return lastItemAttributes.frame.maxX 167 | }else{ 168 | return 0 169 | } 170 | } 171 | // 172 | let lastSection = collectionView.numberOfSections - 1 173 | let contentWidth = lastItemMaxX() + inset(ForSection: lastSection).right 174 | let contentHeight = collectionView.bounds.height - collectionView.contentInset.top - collectionView.contentInset.bottom 175 | return CGSize(width:contentWidth, height:contentHeight) 176 | } 177 | 178 | //MARK: - LayoutAttributes methods 179 | //MARK: For ItemAtIndexPath 180 | public override func layoutAttributesForItem(at indexPath: IndexPath) -> UICollectionViewLayoutAttributes? { 181 | let fromIndexPath = IndexPath(row: indexPath.row, section: indexPath.section) 182 | return itemsAttributes[fromIndexPath] 183 | } 184 | //MARK: For SupplementaryViewOfKind 185 | public override func layoutAttributesForSupplementaryView(ofKind elementKind: String, at indexPath: IndexPath) -> UICollectionViewLayoutAttributes? { 186 | switch elementKind { 187 | case UICollectionElementKindSectionHeader: 188 | let fromIndexPath = IndexPath(row: indexPath.row, section: indexPath.section) 189 | return sectionHeadersAttributes[fromIndexPath] 190 | default: 191 | return nil 192 | } 193 | } 194 | 195 | //MARK: - Utility methods 196 | //MARK: SectionHeaders Attributes methods 197 | private func getSectionHeadersAttributes()->[IndexPath:UICollectionViewLayoutAttributes]{ 198 | func attributeForSectionHeader(at indexPath:IndexPath) -> UICollectionViewLayoutAttributes{ 199 | func size()->CGSize{ 200 | return headerSize(forSection: indexPath.section) 201 | } 202 | // 203 | func position()->CGPoint{ 204 | if let itemsCount = collectionView?.numberOfItems(inSection: indexPath.section), 205 | let firstItemAttributes = layoutAttributesForItem(at: indexPath), 206 | let lastItemAttributes = layoutAttributesForItem(at: IndexPath(row: itemsCount-1, section: indexPath.section)){ 207 | let edgeX = collectionView!.contentOffset.x + collectionView!.contentInset.left 208 | let xByLeftBoundary = max(edgeX,firstItemAttributes.frame.minX) 209 | // 210 | let width = size().width 211 | let xByRightBoundary = lastItemAttributes.frame.maxX - width 212 | let x = min(xByLeftBoundary,xByRightBoundary) 213 | return CGPoint(x:x, y:0) 214 | }else{ 215 | return CGPoint(x:inset(ForSection: indexPath.section).left, y:0) 216 | } 217 | } 218 | // 219 | let attribute = UICollectionViewLayoutAttributes(forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, with: indexPath) 220 | let myPosition = position() 221 | let mySize = size() 222 | let frame = CGRect(x:myPosition.x, y:myPosition.y, width: mySize.width, height: mySize.height) 223 | attribute.frame = frame 224 | 225 | return attribute 226 | } 227 | // 228 | guard let collectionView = collectionView else { 229 | return [:] 230 | } 231 | 232 | let sectionCount = collectionView.numberOfSections 233 | guard sectionCount > 0 else { 234 | return [:] 235 | } 236 | 237 | var attributes = [IndexPath:UICollectionViewLayoutAttributes]() 238 | for section in 0.. Bool { 248 | return true 249 | } 250 | 251 | public override func invalidationContext(forBoundsChange newBounds: CGRect) -> UICollectionViewLayoutInvalidationContext { 252 | func isSizeChanged()->Bool{ 253 | let oldBounds = collectionView!.bounds 254 | return oldBounds.width != newBounds.width || oldBounds.height != newBounds.height 255 | } 256 | 257 | func headersIndexPaths()->[IndexPath]{ 258 | return Array(sectionHeadersAttributes.keys) 259 | } 260 | 261 | // 262 | let context = super.invalidationContext(forBoundsChange: newBounds) 263 | if !isSizeChanged(){ 264 | context.invalidateSupplementaryElements(ofKind: UICollectionElementKindSectionHeader, at: headersIndexPaths()) 265 | } 266 | return context 267 | } 268 | 269 | //MARK: - Utility methods 270 | private func itemSize(for indexPath:IndexPath) -> CGSize{ 271 | guard let collectionView = collectionView, 272 | let delegate = collectionView.delegate as? HorizontalFloatingHeaderLayoutDelegate else { 273 | return CGSize.zero 274 | } 275 | 276 | return delegate.collectionView(collectionView, horizontalFloatingHeaderItemSizeAt: indexPath) 277 | } 278 | 279 | private func headerSize(forSection section:Int) -> CGSize{ 280 | guard let collectionView = collectionView, 281 | let delegate = collectionView.delegate as? HorizontalFloatingHeaderLayoutDelegate, 282 | section >= 0 else { 283 | return CGSize.zero 284 | } 285 | 286 | return delegate.collectionView(collectionView, horizontalFloatingHeaderSizeAt: section) 287 | } 288 | 289 | private func inset(ForSection section:Int) -> UIEdgeInsets{ 290 | let defaultValue = UIEdgeInsets.zero 291 | guard let collectionView = collectionView, 292 | let delegate = collectionView.delegate as? HorizontalFloatingHeaderLayoutDelegate, 293 | section >= 0 else { 294 | return defaultValue 295 | } 296 | 297 | return delegate.collectionView?(collectionView, horizontalFloatingHeaderSectionInsetAt: section) ?? defaultValue 298 | } 299 | 300 | private func columnSpacing(forSection section:Int) -> CGFloat{ 301 | let defaultValue:CGFloat = 0.0 302 | guard let collectionView = collectionView, 303 | let delegate = collectionView.delegate as? HorizontalFloatingHeaderLayoutDelegate, 304 | section >= 0 else { 305 | return defaultValue 306 | } 307 | 308 | return delegate.collectionView?(collectionView, horizontalFloatingHeaderColumnSpacingForSectionAt: section) ?? defaultValue 309 | } 310 | 311 | private func itemSpacing(forSection section:Int) -> CGFloat{ 312 | let defaultValue:CGFloat = 0.0 313 | guard let collectionView = collectionView, 314 | let delegate = collectionView.delegate as? HorizontalFloatingHeaderLayoutDelegate, 315 | section >= 0 else { 316 | return defaultValue 317 | } 318 | 319 | return delegate.collectionView?(collectionView, horizontalFloatingHeaderItemSpacingForSectionAt: section) ?? defaultValue 320 | } 321 | 322 | private func availableHeight(atSection section:Int)->CGFloat{ 323 | guard let collectionView = collectionView else { 324 | return 0.0 325 | } 326 | 327 | func totalInset()->CGFloat{ 328 | let sectionInset = inset(ForSection: section) 329 | let contentInset = collectionView.contentInset 330 | return sectionInset.top + sectionInset.bottom + contentInset.top + contentInset.bottom 331 | } 332 | 333 | // 334 | guard section >= 0 else { 335 | return 0.0 336 | } 337 | 338 | return collectionView.bounds.height - totalInset() 339 | } 340 | } 341 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HorizontalFloatingHeaderLayout 2 | 3 | [![Version](https://img.shields.io/cocoapods/v/HorizontalFloatingHeaderLayout.svg?style=flat)](http://cocoapods.org/pods/HorizontalFloatingHeaderLayout) 4 | [![License](https://img.shields.io/cocoapods/l/HorizontalFloatingHeaderLayout.svg?style=flat)](http://cocoapods.org/pods/HorizontalFloatingHeaderLayout) 5 | [![Platform](https://img.shields.io/cocoapods/p/HorizontalFloatingHeaderLayout.svg?style=flat)](http://cocoapods.org/pods/HorizontalFloatingHeaderLayout) 6 | 7 | ![Example.gif](https://raw.githubusercontent.com/cruzdiego/HorizontalFloatingHeaderLayout/master/Pod/Assets/Example.gif) 8 | 9 | **HorizontalFLoatingHeaderLayout** is a subclass of UICollectionViewLayout built with performance in mind. Born from the need for replicating UITableView's sticky headers behavior and iOS 8+ native Emoji keyboard. 10 | 11 | For a vertical implementation, you can turn on *sectionHeadersPinToVisibleBounds* flag from UICollectionViewFlowLayout (available since iOS 9.0) 12 | 13 | ## What's new in 2.0 14 | 15 | - Added support for Swift 4.0 16 | 17 | ## Installation 18 | 19 | #### Via [CocoaPods](http://cocoapods.org): 20 | 21 | ```ruby 22 | pod "HorizontalFloatingHeaderLayout" 23 | ``` 24 | 25 | #### Manually: 26 | 27 | 1. Clone this repo or download it as a .zip file 28 | 2. Drag and drop HorizontalFloatingHeaderLayout.swift to your project 29 | 30 | ## Usage 31 | 32 | #### From Storyboard: 33 | 34 | **1.** On your UICollectionView's inspector, change its layout to "Custom" and type *HorizontalFloatingHeaderLayout* on the class field 35 | 36 | ![](https://raw.githubusercontent.com/cruzdiego/HorizontalFloatingHeaderLayout/master/Pod/Assets/storyboard.png) 37 | 38 | **2.** Import framework to your UIViewController subclass... 39 | 40 | ```swift 41 | import HorizontalFloatingHeaderLayout 42 | ``` 43 | 44 | and make it conform protocol HorizontalFloatingHeaderLayoutDelegate 45 | 46 | ```swift 47 | class YourViewController: UIViewController, HorizontalFloatingHeaderLayoutDelegate { 48 | ``` 49 | 50 | **3.** Implement all the necessary delegate methods. 51 | 52 | #### Programatically: 53 | 54 | **1.** Import framework to your UIViewController subclass 55 | 56 | ```swift 57 | import HorizontalFloatingHeaderLayout 58 | ``` 59 | 60 | **2.** Instantiate and add to your UICollectionView object 61 | 62 | ```swift 63 | collectionView.collectionViewLayout = HorizontalFloatingHeaderLayout() 64 | ``` 65 | 66 | **3.** Make your UIViewController subclass conform protocol HorizontalFloatingHeaderLayoutDelegate 67 | 68 | ```swift 69 | class YourViewController: UIViewController, HorizontalFloatingHeaderLayoutDelegate { 70 | ``` 71 | 72 | **4.** Implement all the necessary delegate methods. 73 | 74 | ## Delegate methods 75 | 76 | ```swift 77 | //Item size 78 | func collectionView(_ collectionView: UICollectionView,horizontalFloatingHeaderItemSizeAt indexPath:NSIndexPath) -> CGSize 79 | ``` 80 | 81 | Returns item size. Mandatory implementation. 82 | 83 | 84 | ```swift 85 | //Header size 86 | func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderSizeAt section: Int) -> CGSize 87 | ``` 88 | 89 | Returns section's header size. Mandatory implementation. 90 | 91 | ```swift 92 | //Section Inset 93 | optional func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderSectionInsetForSectionAt section: Int) -> UIEdgeInsets 94 | ``` 95 | 96 | Returns section's edge insets. Optional implementation. Default value is UIEdgeInsetsZero 97 | 98 | ```swift 99 | //Item Spacing 100 | optional func collectionView(_ collectionView: UICollectionView, horizontalFloatingHeaderItemSpacingForSectionAt section: Int) -> CGFloat 101 | ``` 102 | 103 | Returns point spacing between items on the same column. Optional implementation. Default value is 0.0. 104 | 105 | ```swift 106 | //Line Spacing 107 | optional func collectionView(_ collectionView: UICollectionView,horizontalFloatingHeaderColumnSpacingForSectionAt section: Int) -> CGFloat 108 | ``` 109 | 110 | Returns points spacing between columns. Optional implementation. Default value is 0.0. 111 | 112 | ## Requirements 113 | 114 | - iOS 9.0 115 | - Xcode 8.0 or later (Uses Swift 4.0 syntax) 116 | 117 | ## Author 118 | 119 | Diego Cruz, diego.cruz@icloud.com 120 | 121 | ## License 122 | 123 | HorizontalFloatingHeaderLayout is available under the MIT license. See the LICENSE file for more info. 124 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------