Repository: ikemai/ScaledVisibleCellsCollectionView Branch: master Commit: 2012b2f5ba6e Files: 67 Total size: 166.4 KB Directory structure: gitextract_m88phxly/ ├── LICENSE ├── README.md ├── ScaledVisibleCellsCollectionView/ │ ├── Info.plist │ ├── ScaledVisibleCellsCollectionView.h │ └── ScaledVisibleCellsCollectionView.swift ├── ScaledVisibleCellsCollectionView.podspec ├── ScaledVisibleCellsCollectionView.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ └── ScaledVisibleCellsCollectionView.xccheckout │ │ └── xcuserdata/ │ │ └── ikedamai.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata/ │ └── ikedamai.xcuserdatad/ │ └── xcschemes/ │ ├── ScaledVisibleCellsCollectionView.xcscheme │ └── xcschememanagement.plist ├── ScaledVisibleCellsCollectionViewExample/ │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── ScaledVisibleCellsCollectionView.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example-ScaledVisibleCellsCollectionView-ScaledVisibleCellsCollectionView.xcscheme │ │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example-ScaledVisibleCellsCollectionView.xcscheme │ │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests-ScaledVisibleCellsCollectionView-ScaledVisibleCellsCollectionView.xcscheme │ │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests-ScaledVisibleCellsCollectionView.xcscheme │ │ │ │ └── ScaledVisibleCellsCollectionView.xcscheme │ │ │ └── xcuserdata/ │ │ │ └── ikedamai.xcuserdatad/ │ │ │ └── xcschemes/ │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example.xcscheme │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── Target Support Files/ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example/ │ │ │ ├── Info.plist │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.markdown │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.plist │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example-dummy.m │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example-frameworks.sh │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example-resources.sh │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Example.modulemap │ │ │ └── Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests/ │ │ │ ├── Info.plist │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.markdown │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.plist │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests-frameworks.sh │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests-resources.sh │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig │ │ │ ├── Pods-ScaledVisibleCellsCollectionView_Tests.modulemap │ │ │ └── Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig │ │ └── ScaledVisibleCellsCollectionView/ │ │ ├── Info.plist │ │ ├── ScaledVisibleCellsCollectionView-Private.xcconfig │ │ ├── ScaledVisibleCellsCollectionView-dummy.m │ │ ├── ScaledVisibleCellsCollectionView-prefix.pch │ │ ├── ScaledVisibleCellsCollectionView-umbrella.h │ │ ├── ScaledVisibleCellsCollectionView.modulemap │ │ └── ScaledVisibleCellsCollectionView.xcconfig │ ├── ScaledVisibleCellsCollectionView/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── ScaledVisibleCellsCollectionView.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── ScaledVisibleCellsCollectionView-Example.xcscheme │ │ └── xcuserdata/ │ │ └── ikedamai.xcuserdatad/ │ │ └── xcschemes/ │ │ └── xcschememanagement.plist │ ├── ScaledVisibleCellsCollectionView.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ └── ScaledVisibleCellsCollectionView.xccheckout │ │ └── xcuserdata/ │ │ └── ikedamai.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ └── Tests/ │ ├── Info.plist │ └── Tests.swift └── ScaledVisibleCellsCollectionViewTests/ ├── Info.plist └── ScaledVisibleCellsCollectionViewTests.swift ================================================ FILE CONTENTS ================================================ ================================================ FILE: LICENSE ================================================ Copyright (c) 2015 ikemai Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # ScaledVisibleCellsCollectionView [![CI Status](http://img.shields.io/travis/ikemai/ScaledVisibleCellsCollectionView.svg?style=flat)](https://travis-ci.org/ikemai/ScaledVisibleCellsCollectionView) [![Version](https://img.shields.io/cocoapods/v/ScaledVisibleCellsCollectionView.svg?style=flat)](http://cocoapods.org/pods/ScaledVisibleCellsCollectionView) [![License](https://img.shields.io/cocoapods/l/ScaledVisibleCellsCollectionView.svg?style=flat)](http://cocoapods.org/pods/ScaledVisibleCellsCollectionView) [![Platform](https://img.shields.io/cocoapods/p/ScaledVisibleCellsCollectionView.svg?style=flat)](http://cocoapods.org/pods/ScaledVisibleCellsCollectionView) ScaledVisibleCellsCollectionView is UICollectionView extension. ScaledVisibleCellsCollectionView is Check visible cells position. And setting cell's scale and alpha. ## Demo ### Horizontal ( center / right / left ) ![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/horizontal_center.gif) ![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/horizontal_left.gif) ![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/horizontal_right.gif) ### Vertical ( center / top / bottom ) ![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/vertical_center.gif) ![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/vertical_top.gif) ![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/vertical_bottom.gif) ## Usage #### Cocoapods To run the example project, clone the repo, and run `pod install` from the Example directory first. Add the following to your `Podfile`: ```Ruby pod "ScaledVisibleCellsCollectionView" use_frameworks! ``` Note: the `use_frameworks!` is required for pods made in Swift. ### Example * Set propertis ```swift let collectionView = UICollectionView(frame: view.bounds) view.addSubview(collectionView) collectionView.setScaledDesginParam(scaledPattern: .VerticalCenter, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5) ``` * Scale and alpha ```swift func scrollViewDidScroll(scrollView: UIScrollView) { collectionView.scaledVisibleCells() } ``` ### Variable * Set Scroll direction & position is the most large cell ```swift var scaledPattern: SC_ScaledPattern = .VerticalCenter ``` ```swift public enum SC_ScaledPattern { case HorizontalCenter case HorizontalLeft case HorizontalRight case VerticalCenter case VerticalBottom case VerticalTop } ``` * Set Scale ```Swift var maxScale: CGFloat = 1.0 var minScale: CGFloat = 0.5 ``` * Set Alpha ```Swift var maxAlpha: CGFloat = 1.0 var minAlpha: CGFloat = 0.5 ``` ### Function * Set property ( * Please always set ) ```swift func setScaledDesginParam(scaledPattern pattern: SC_ScaledPattern, maxScale: CGFloat, minScale: CGFloat, maxAlpha: CGFloat, minAlpha: CGFloat) ``` * Set scale for visible cells ( * Please call at any time ) ```swift func scaledVisibleCells() ``` ## Author ikemai ## License ScaledVisibleCellsCollectionView is available under the MIT license. See the LICENSE file for more info. ================================================ FILE: ScaledVisibleCellsCollectionView/Info.plist ================================================ CFBundleDevelopmentRegion en CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier jp.mai.ikeda.$(PRODUCT_NAME:rfc1034identifier) CFBundleInfoDictionaryVersion 6.0 CFBundleName $(PRODUCT_NAME) CFBundlePackageType FMWK CFBundleShortVersionString 0.2 CFBundleSignature ???? CFBundleVersion 0 NSPrincipalClass ================================================ FILE: ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.h ================================================ // // ScaledVisibleCellsCollectionView.h // ScaledVisibleCellsCollectionView // // Created by Mai Ikeda on 2015/08/22. // Copyright (c) 2015年 mai_ikeda. All rights reserved. // #import //! Project version number for ScaledVisibleCellsCollectionView. FOUNDATION_EXPORT double ScaledVisibleCellsCollectionViewVersionNumber; //! Project version string for ScaledVisibleCellsCollectionView. FOUNDATION_EXPORT const unsigned char ScaledVisibleCellsCollectionViewVersionString[]; // In this header, you should import all the public headers of your framework using statements like #import ================================================ FILE: ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.swift ================================================ // // ScaledVisibleCellsCollectionView.swift // ScaledVisibleCellsCollectionView // // Created by Mai Ikeda on 2015/08/22. // Copyright (c) 2015年 mai_ikeda. All rights reserved. // import UIKit public enum SC_ScaledPattern { case HorizontalCenter case HorizontalLeft case HorizontalRight case VerticalCenter case VerticalBottom case VerticalTop } public class ScaledVisibleCellsCollectionView { static let sharedInstance = ScaledVisibleCellsCollectionView() var maxScale: CGFloat = 1.0 var minScale: CGFloat = 0.5 var maxAlpha: CGFloat = 1.0 var minAlpha: CGFloat = 0.5 var scaledPattern: SC_ScaledPattern = .VerticalCenter } extension UICollectionView { /** Please always set */ public func setScaledDesginParam(scaledPattern pattern: SC_ScaledPattern, maxScale: CGFloat, minScale: CGFloat, maxAlpha: CGFloat, minAlpha: CGFloat) { ScaledVisibleCellsCollectionView.sharedInstance.scaledPattern = pattern ScaledVisibleCellsCollectionView.sharedInstance.maxScale = maxScale ScaledVisibleCellsCollectionView.sharedInstance.minScale = minScale ScaledVisibleCellsCollectionView.sharedInstance.maxAlpha = maxAlpha ScaledVisibleCellsCollectionView.sharedInstance.minAlpha = minAlpha } /** Please call at any time */ public func scaledVisibleCells() { switch ScaledVisibleCellsCollectionView.sharedInstance.scaledPattern { case .HorizontalCenter, .HorizontalLeft, .HorizontalRight: scaleCellsForHorizontalScroll(visibleCells()) break case .VerticalCenter, .VerticalTop, .VerticalBottom: self.scaleCellsForVerticalScroll(visibleCells()) break } } } extension UICollectionView { private func scaleCellsForHorizontalScroll(visibleCells: [UICollectionViewCell]) { let scalingAreaWidth = bounds.width / 2 let maximumScalingAreaWidth = (bounds.width / 2 - scalingAreaWidth) / 2 for cell in visibleCells { var distanceFromMainPosition: CGFloat = 0 switch ScaledVisibleCellsCollectionView.sharedInstance.scaledPattern { case .HorizontalCenter: distanceFromMainPosition = horizontalCenter(cell) break case .HorizontalLeft: distanceFromMainPosition = abs(cell.frame.midX - contentOffset.x - (cell.bounds.width / 2)) break case .HorizontalRight: distanceFromMainPosition = abs(bounds.width / 2 - (cell.frame.midX - contentOffset.x) + (cell.bounds.width / 2)) break default: return } let preferredAry = scaleCells(distanceFromMainPosition, maximumScalingArea: maximumScalingAreaWidth, scalingArea: scalingAreaWidth) let preferredScale = preferredAry[0] let preferredAlpha = preferredAry[1] cell.transform = CGAffineTransformMakeScale(preferredScale, preferredScale) cell.alpha = preferredAlpha } } private func scaleCellsForVerticalScroll(visibleCells: [UICollectionViewCell]) { let scalingAreaHeight = bounds.height / 2 let maximumScalingAreaHeight = (bounds.height / 2 - scalingAreaHeight) / 2 for cell in visibleCells { var distanceFromMainPosition: CGFloat = 0 switch ScaledVisibleCellsCollectionView.sharedInstance.scaledPattern { case .VerticalCenter: distanceFromMainPosition = verticalCenter(cell) break case .VerticalBottom: distanceFromMainPosition = abs(bounds.height - (cell.frame.midY - contentOffset.y + (cell.bounds.height / 2))) break case .VerticalTop: distanceFromMainPosition = abs(cell.frame.midY - contentOffset.y - (cell.bounds.height / 2)) break default: return } let preferredAry = scaleCells(distanceFromMainPosition, maximumScalingArea: maximumScalingAreaHeight, scalingArea: scalingAreaHeight) let preferredScale = preferredAry[0] let preferredAlpha = preferredAry[1] cell.transform = CGAffineTransformMakeScale(preferredScale, preferredScale) cell.alpha = preferredAlpha } } private func scaleCells(distanceFromMainPosition: CGFloat, maximumScalingArea: CGFloat, scalingArea: CGFloat) -> [CGFloat] { var preferredScale: CGFloat = 0.0 var preferredAlpha: CGFloat = 0.0 let maxScale = ScaledVisibleCellsCollectionView.sharedInstance.maxScale let minScale = ScaledVisibleCellsCollectionView.sharedInstance.minScale let maxAlpha = ScaledVisibleCellsCollectionView.sharedInstance.maxAlpha let minAlpha = ScaledVisibleCellsCollectionView.sharedInstance.minAlpha if distanceFromMainPosition < maximumScalingArea { // cell in maximum-scaling area preferredScale = maxScale preferredAlpha = maxAlpha } else if distanceFromMainPosition < (maximumScalingArea + scalingArea) { // cell in scaling area let multiplier = abs((distanceFromMainPosition - maximumScalingArea) / scalingArea) preferredScale = maxScale - multiplier * (maxScale - minScale) preferredAlpha = maxAlpha - multiplier * (maxAlpha - minAlpha) } else { // cell in minimum-scaling area preferredScale = minScale preferredAlpha = minAlpha } return [ preferredScale, preferredAlpha ] } } extension UICollectionView { private func horizontalCenter(cell: UICollectionViewCell)-> CGFloat { return abs(bounds.width / 2 - (cell.frame.midX - contentOffset.x)) } private func verticalCenter(cell: UICollectionViewCell)-> CGFloat { return abs(bounds.height / 2 - (cell.frame.midY - contentOffset.y)) } } ================================================ FILE: ScaledVisibleCellsCollectionView.podspec ================================================ Pod::Spec.new do |s| s.name = "ScaledVisibleCellsCollectionView" s.version = "0.2.0" s.summary = "TapGestureGenerater is get tap and gesture event." s.homepage = "https://github.com/ikemai/ScaledVisibleCellsCollectionView" s.license = { :type => "MIT", :file => "LICENSE" } s.author = { "ikemai" => "ikeda_mai@cyberagent.co.jp" } s.platform = :ios, "8.0" s.source = { :git => "https://github.com/ikemai/ScaledVisibleCellsCollectionView.git", :tag => s.version.to_s } s.source_files = "ScaledVisibleCellsCollectionView/**/*.{h,swift}" s.requires_arc = true s.frameworks = "UIKit" end ================================================ FILE: ScaledVisibleCellsCollectionView.xcodeproj/project.pbxproj ================================================ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 46; objects = { /* Begin PBXBuildFile section */ 808743B61B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 808743B51B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 808743BC1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 808743B01B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework */; }; 808743C31B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 808743C21B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.swift */; }; 808743CD1B88BE36000B0B16 /* ScaledVisibleCellsCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 808743CC1B88BE36000B0B16 /* ScaledVisibleCellsCollectionView.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ 808743BD1B88BDA2000B0B16 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 808743A71B88BDA2000B0B16 /* Project object */; proxyType = 1; remoteGlobalIDString = 808743AF1B88BDA2000B0B16; remoteInfo = ScaledVisibleCellsCollectionView; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 808743B01B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ScaledVisibleCellsCollectionView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 808743B41B88BDA2000B0B16 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 808743B51B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScaledVisibleCellsCollectionView.h; sourceTree = ""; }; 808743BB1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ScaledVisibleCellsCollectionViewTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 808743C11B88BDA2000B0B16 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 808743C21B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScaledVisibleCellsCollectionViewTests.swift; sourceTree = ""; }; 808743CC1B88BE36000B0B16 /* ScaledVisibleCellsCollectionView.swift */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.swift; path = ScaledVisibleCellsCollectionView.swift; sourceTree = ""; tabWidth = 4; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ 808743AC1B88BDA2000B0B16 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; 808743B81B88BDA2000B0B16 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 808743BC1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 808743A61B88BDA2000B0B16 = { isa = PBXGroup; children = ( 808743B21B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView */, 808743BF1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests */, 808743B11B88BDA2000B0B16 /* Products */, ); sourceTree = ""; }; 808743B11B88BDA2000B0B16 /* Products */ = { isa = PBXGroup; children = ( 808743B01B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework */, 808743BB1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.xctest */, ); name = Products; sourceTree = ""; }; 808743B21B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView */ = { isa = PBXGroup; children = ( 808743B51B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.h */, 808743CC1B88BE36000B0B16 /* ScaledVisibleCellsCollectionView.swift */, 808743B31B88BDA2000B0B16 /* Supporting Files */, ); path = ScaledVisibleCellsCollectionView; sourceTree = ""; }; 808743B31B88BDA2000B0B16 /* Supporting Files */ = { isa = PBXGroup; children = ( 808743B41B88BDA2000B0B16 /* Info.plist */, ); name = "Supporting Files"; sourceTree = ""; }; 808743BF1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests */ = { isa = PBXGroup; children = ( 808743C21B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.swift */, 808743C01B88BDA2000B0B16 /* Supporting Files */, ); path = ScaledVisibleCellsCollectionViewTests; sourceTree = ""; }; 808743C01B88BDA2000B0B16 /* Supporting Files */ = { isa = PBXGroup; children = ( 808743C11B88BDA2000B0B16 /* Info.plist */, ); name = "Supporting Files"; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ 808743AD1B88BDA2000B0B16 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( 808743B61B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ 808743AF1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView */ = { isa = PBXNativeTarget; buildConfigurationList = 808743C61B88BDA2000B0B16 /* Build configuration list for PBXNativeTarget "ScaledVisibleCellsCollectionView" */; buildPhases = ( 808743AB1B88BDA2000B0B16 /* Sources */, 808743AC1B88BDA2000B0B16 /* Frameworks */, 808743AD1B88BDA2000B0B16 /* Headers */, 808743AE1B88BDA2000B0B16 /* Resources */, ); buildRules = ( ); dependencies = ( ); name = ScaledVisibleCellsCollectionView; productName = ScaledVisibleCellsCollectionView; productReference = 808743B01B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework */; productType = "com.apple.product-type.framework"; }; 808743BA1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests */ = { isa = PBXNativeTarget; buildConfigurationList = 808743C91B88BDA2000B0B16 /* Build configuration list for PBXNativeTarget "ScaledVisibleCellsCollectionViewTests" */; buildPhases = ( 808743B71B88BDA2000B0B16 /* Sources */, 808743B81B88BDA2000B0B16 /* Frameworks */, 808743B91B88BDA2000B0B16 /* Resources */, ); buildRules = ( ); dependencies = ( 808743BE1B88BDA2000B0B16 /* PBXTargetDependency */, ); name = ScaledVisibleCellsCollectionViewTests; productName = ScaledVisibleCellsCollectionViewTests; productReference = 808743BB1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ 808743A71B88BDA2000B0B16 /* Project object */ = { isa = PBXProject; attributes = { LastSwiftMigration = 0700; LastSwiftUpdateCheck = 0700; LastUpgradeCheck = 0640; ORGANIZATIONNAME = mai_ikeda; TargetAttributes = { 808743AF1B88BDA2000B0B16 = { CreatedOnToolsVersion = 6.4; }; 808743BA1B88BDA2000B0B16 = { CreatedOnToolsVersion = 6.4; }; }; }; buildConfigurationList = 808743AA1B88BDA2000B0B16 /* Build configuration list for PBXProject "ScaledVisibleCellsCollectionView" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( en, ); mainGroup = 808743A61B88BDA2000B0B16; productRefGroup = 808743B11B88BDA2000B0B16 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 808743AF1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView */, 808743BA1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ 808743AE1B88BDA2000B0B16 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; 808743B91B88BDA2000B0B16 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ 808743AB1B88BDA2000B0B16 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 808743CD1B88BE36000B0B16 /* ScaledVisibleCellsCollectionView.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; 808743B71B88BDA2000B0B16 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 808743C31B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ 808743BE1B88BDA2000B0B16 /* PBXTargetDependency */ = { isa = PBXTargetDependency; target = 808743AF1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView */; targetProxy = 808743BD1B88BDA2000B0B16 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ 808743C41B88BDA2000B0B16 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; CURRENT_PROJECT_VERSION = 1; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); GCC_SYMBOLS_PRIVATE_EXTERN = NO; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 8.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; 808743C51B88BDA2000B0B16 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; CURRENT_PROJECT_VERSION = 1; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 8.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; 808743C71B88BDA2000B0B16 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_MODULES = YES; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = ScaledVisibleCellsCollectionView/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_NAME = "$(TARGET_NAME)"; SKIP_INSTALL = YES; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; }; name = Debug; }; 808743C81B88BDA2000B0B16 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_MODULES = YES; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = ScaledVisibleCellsCollectionView/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_NAME = "$(TARGET_NAME)"; SKIP_INSTALL = YES; }; name = Release; }; 808743CA1B88BDA2000B0B16 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = ( "$(SDKROOT)/Developer/Library/Frameworks", "$(inherited)", ); GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); INFOPLIST_FILE = ScaledVisibleCellsCollectionViewTests/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Debug; }; 808743CB1B88BDA2000B0B16 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = ( "$(SDKROOT)/Developer/Library/Frameworks", "$(inherited)", ); INFOPLIST_FILE = ScaledVisibleCellsCollectionViewTests/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ 808743AA1B88BDA2000B0B16 /* Build configuration list for PBXProject "ScaledVisibleCellsCollectionView" */ = { isa = XCConfigurationList; buildConfigurations = ( 808743C41B88BDA2000B0B16 /* Debug */, 808743C51B88BDA2000B0B16 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 808743C61B88BDA2000B0B16 /* Build configuration list for PBXNativeTarget "ScaledVisibleCellsCollectionView" */ = { isa = XCConfigurationList; buildConfigurations = ( 808743C71B88BDA2000B0B16 /* Debug */, 808743C81B88BDA2000B0B16 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 808743C91B88BDA2000B0B16 /* Build configuration list for PBXNativeTarget "ScaledVisibleCellsCollectionViewTests" */ = { isa = XCConfigurationList; buildConfigurations = ( 808743CA1B88BDA2000B0B16 /* Debug */, 808743CB1B88BDA2000B0B16 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; rootObject = 808743A71B88BDA2000B0B16 /* Project object */; } ================================================ FILE: ScaledVisibleCellsCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata ================================================ ================================================ FILE: ScaledVisibleCellsCollectionView.xcodeproj/project.xcworkspace/xcshareddata/ScaledVisibleCellsCollectionView.xccheckout ================================================ IDESourceControlProjectFavoriteDictionaryKey IDESourceControlProjectIdentifier C3E2AC95-FF1F-4342-BE09-EF7AE2BED369 IDESourceControlProjectName ScaledVisibleCellsCollectionView IDESourceControlProjectOriginsDictionary B3EF76A2567DC792311C6177A929DB9D96C39798 https://github.com/ikemai/ScaledVisibleCellsCollectionView.git IDESourceControlProjectPath ScaledVisibleCellsCollectionView.xcodeproj IDESourceControlProjectRelativeInstallPathDictionary B3EF76A2567DC792311C6177A929DB9D96C39798 ../.. IDESourceControlProjectURL https://github.com/ikemai/ScaledVisibleCellsCollectionView.git IDESourceControlProjectVersion 111 IDESourceControlProjectWCCIdentifier B3EF76A2567DC792311C6177A929DB9D96C39798 IDESourceControlProjectWCConfigurations IDESourceControlRepositoryExtensionIdentifierKey public.vcs.git IDESourceControlWCCIdentifierKey B3EF76A2567DC792311C6177A929DB9D96C39798 IDESourceControlWCCName ScaledVisibleCellsCollectionView ================================================ FILE: ScaledVisibleCellsCollectionView.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/ScaledVisibleCellsCollectionView.xcscheme ================================================ ================================================ FILE: ScaledVisibleCellsCollectionView.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/xcschememanagement.plist ================================================ SchemeUserState ScaledVisibleCellsCollectionView.xcscheme orderHint 0 SuppressBuildableAutocreation 808743AF1B88BDA2000B0B16 primary 808743BA1B88BDA2000B0B16 primary ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Podfile ================================================ source 'https://github.com/CocoaPods/Specs.git' use_frameworks! target 'ScaledVisibleCellsCollectionView_Example', :exclusive => true do pod "ScaledVisibleCellsCollectionView", :path => "../" end target 'ScaledVisibleCellsCollectionView_Tests', :exclusive => true do pod "ScaledVisibleCellsCollectionView", :path => "../" end ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Local Podspecs/ScaledVisibleCellsCollectionView.podspec.json ================================================ { "name": "ScaledVisibleCellsCollectionView", "version": "0.2.0", "summary": "TapGestureGenerater is get tap and gesture event.", "homepage": "https://github.com/ikemai/ScaledVisibleCellsCollectionView", "license": { "type": "MIT", "file": "LICENSE" }, "authors": { "ikemai": "ikeda_mai@cyberagent.co.jp" }, "platforms": { "ios": "8.0" }, "source": { "git": "https://github.com/ikemai/ScaledVisibleCellsCollectionView.git", "tag": "0.2.0" }, "source_files": "ScaledVisibleCellsCollectionView/**/*.{h,swift}", "requires_arc": true, "frameworks": "UIKit" } ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/project.pbxproj ================================================ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 46; objects = { /* Begin PBXBuildFile section */ 1B657DC7A5C17800901424A310AA08F4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A78979ED1230825E9ACF68472D46A72C /* Foundation.framework */; }; 3C15648E5B8E91464DF72A3B74B14A2F /* ScaledVisibleCellsCollectionView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A33615FE87F5F8CF4C4D9462AF16C377 /* ScaledVisibleCellsCollectionView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 42AE903BA63936FF5D33D3CE9E7407A6 /* ScaledVisibleCellsCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BBA3ACD5D30EF75E8805446B2EEE7E /* ScaledVisibleCellsCollectionView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4CF0319A1A608A6F9EF8D0E325B6BCB3 /* Pods-ScaledVisibleCellsCollectionView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 188CDE3E026875C505AA3A54D9C61938 /* Pods-ScaledVisibleCellsCollectionView_Example-dummy.m */; }; 721019629B6EB5842D293AB2CF04BA99 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A78979ED1230825E9ACF68472D46A72C /* Foundation.framework */; }; 7709C0F9976EE44E7BA56BC8F6E5E2E9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A78979ED1230825E9ACF68472D46A72C /* Foundation.framework */; }; 7912CCF5480E61977C053C68E422AB55 /* ScaledVisibleCellsCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8600799695F596092B749B4981BA6E6 /* ScaledVisibleCellsCollectionView.swift */; }; A8EE68EC0AD0A5CF5E2F6084C10F8142 /* Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 18766C201A819535B6FD6E239530C0CE /* Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; D27C67CCA7F9C39FEB03B4B2E4DB4423 /* Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 89AE12AD22BB19CF0F0C10D3684CDDE2 /* Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m */; }; E5B7BE6841D0AD6199435379D1445BD0 /* ScaledVisibleCellsCollectionView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 049ECD3C9793BCD210DEE8BFF062B9B5 /* ScaledVisibleCellsCollectionView-dummy.m */; }; ECD2ED2814DAC247940CB771FF6E35DE /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A1A2C91E45E453ADF8CEFEE38E20F74 /* UIKit.framework */; }; FD1931D4B948FB9D5D5D9BE838FE9479 /* Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C4221BF9107FFC222B0BF3EA2238DB /* Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ 4BC88A2073A97447F76FB9449DE91091 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 26A3DB15CB154E70CE261AD2F93B684E; remoteInfo = ScaledVisibleCellsCollectionView; }; 9645CD1890DCB8EC235B00353A768C34 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 26A3DB15CB154E70CE261AD2F93B684E; remoteInfo = ScaledVisibleCellsCollectionView; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 00EFAE8C540C313EECFE69A65BA2F134 /* Pods_ScaledVisibleCellsCollectionView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScaledVisibleCellsCollectionView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 02699250E243D8FEBDC50CAD6D2E714C /* Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.plist"; sourceTree = ""; }; 049ECD3C9793BCD210DEE8BFF062B9B5 /* ScaledVisibleCellsCollectionView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ScaledVisibleCellsCollectionView-dummy.m"; sourceTree = ""; }; 05BBA3ACD5D30EF75E8805446B2EEE7E /* ScaledVisibleCellsCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ScaledVisibleCellsCollectionView.h; sourceTree = ""; }; 13A01A4F7215FEE74E9CE40B9ABD2C0F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 18766C201A819535B6FD6E239530C0CE /* Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h"; sourceTree = ""; }; 188CDE3E026875C505AA3A54D9C61938 /* Pods-ScaledVisibleCellsCollectionView_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ScaledVisibleCellsCollectionView_Example-dummy.m"; sourceTree = ""; }; 233476E1D2D8F64BF7B3A7661AF52D6E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 2C386884E1C545D3D08E0AA5F4A20B87 /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig"; sourceTree = ""; }; 2C75DD2678EFA6CAD4C3D08FB3C6D1B1 /* ScaledVisibleCellsCollectionView-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ScaledVisibleCellsCollectionView-Private.xcconfig"; sourceTree = ""; }; 3BC2F8D09F107A614DC5ADE63ED5DF04 /* ScaledVisibleCellsCollectionView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ScaledVisibleCellsCollectionView-prefix.pch"; sourceTree = ""; }; 3E14DD21E8B849AD18400C217C3F7BB3 /* Pods-ScaledVisibleCellsCollectionView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ScaledVisibleCellsCollectionView_Example-frameworks.sh"; sourceTree = ""; }; 3F7A1E8261ADA0E0392801D9E606B344 /* Pods-ScaledVisibleCellsCollectionView_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ScaledVisibleCellsCollectionView_Example-resources.sh"; sourceTree = ""; }; 4C8659B200A057815668101361B214D4 /* Pods-ScaledVisibleCellsCollectionView_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ScaledVisibleCellsCollectionView_Tests-resources.sh"; sourceTree = ""; }; 4EEDC4EDF9AB3E73A25914185BCE95D4 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig"; sourceTree = ""; }; 51C67F71C7A817D06C5C46B87687885E /* ScaledVisibleCellsCollectionView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ScaledVisibleCellsCollectionView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 55C85CF9C7E9145EE629F0EBE16033A5 /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig"; sourceTree = ""; }; 5A1A2C91E45E453ADF8CEFEE38E20F74 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; 7F2FE28DDD7B1A312A193BA348098555 /* Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.plist"; sourceTree = ""; }; 804C9E11D33E32FBDB77A66839F5AD05 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScaledVisibleCellsCollectionView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 8965A99E76AF3BA809CD183534600E1F /* Pods-ScaledVisibleCellsCollectionView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-ScaledVisibleCellsCollectionView_Tests.modulemap"; sourceTree = ""; }; 89AE12AD22BB19CF0F0C10D3684CDDE2 /* Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m"; sourceTree = ""; }; A33615FE87F5F8CF4C4D9462AF16C377 /* ScaledVisibleCellsCollectionView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ScaledVisibleCellsCollectionView-umbrella.h"; sourceTree = ""; }; A78979ED1230825E9ACF68472D46A72C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; B236549017F8616ED38A472F27E675FD /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig"; sourceTree = ""; }; BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C2441ED66868A9C90322500C2306A322 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; C75DE6951CB7A9C272BBA7C9DFC69C2D /* Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.markdown"; sourceTree = ""; }; C7C4221BF9107FFC222B0BF3EA2238DB /* Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h"; sourceTree = ""; }; D2BF0FF0266E31A35814A36510F636FE /* Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.markdown"; sourceTree = ""; }; D7F0E2B05E26B9BF25CC438321B01F42 /* Pods-ScaledVisibleCellsCollectionView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-ScaledVisibleCellsCollectionView_Example.modulemap"; sourceTree = ""; }; D8600799695F596092B749B4981BA6E6 /* ScaledVisibleCellsCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ScaledVisibleCellsCollectionView.swift; sourceTree = ""; }; E8845E3352258E16D7D0562D09C9F6A2 /* Pods-ScaledVisibleCellsCollectionView_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ScaledVisibleCellsCollectionView_Tests-frameworks.sh"; sourceTree = ""; }; EA0D67244462411B0FE1D39F6A93BBB7 /* ScaledVisibleCellsCollectionView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = ScaledVisibleCellsCollectionView.modulemap; sourceTree = ""; }; F6A255B5EBFF138545530C9EEA0569A7 /* ScaledVisibleCellsCollectionView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ScaledVisibleCellsCollectionView.xcconfig; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ 80EB0632DF41BCCAFA8851A33B85FC76 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 1B657DC7A5C17800901424A310AA08F4 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; 901ACA354487299DABEF99B24587D009 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 7709C0F9976EE44E7BA56BC8F6E5E2E9 /* Foundation.framework in Frameworks */, ECD2ED2814DAC247940CB771FF6E35DE /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; B88C00B2EF7B6D359AAB1C54EAFF5306 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 721019629B6EB5842D293AB2CF04BA99 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 16EE5710D6D3CE1D761E89460CF70A4F /* Support Files */ = { isa = PBXGroup; children = ( 13A01A4F7215FEE74E9CE40B9ABD2C0F /* Info.plist */, EA0D67244462411B0FE1D39F6A93BBB7 /* ScaledVisibleCellsCollectionView.modulemap */, F6A255B5EBFF138545530C9EEA0569A7 /* ScaledVisibleCellsCollectionView.xcconfig */, 2C75DD2678EFA6CAD4C3D08FB3C6D1B1 /* ScaledVisibleCellsCollectionView-Private.xcconfig */, 049ECD3C9793BCD210DEE8BFF062B9B5 /* ScaledVisibleCellsCollectionView-dummy.m */, 3BC2F8D09F107A614DC5ADE63ED5DF04 /* ScaledVisibleCellsCollectionView-prefix.pch */, A33615FE87F5F8CF4C4D9462AF16C377 /* ScaledVisibleCellsCollectionView-umbrella.h */, ); name = "Support Files"; path = "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView"; sourceTree = ""; }; 231DA38102D0C3F7FF1A93B52876E8C2 /* Targets Support Files */ = { isa = PBXGroup; children = ( D0F582521A3DA50EE5C5C9E63E5362D8 /* Pods-ScaledVisibleCellsCollectionView_Example */, B1C2BAB35198B3C03D7CF5DF5AB34917 /* Pods-ScaledVisibleCellsCollectionView_Tests */, ); name = "Targets Support Files"; sourceTree = ""; }; 433CD3331B6C3787F473C941B61FC68F /* Frameworks */ = { isa = PBXGroup; children = ( D0FB9306D21AF23A056944AE037CBFFF /* iOS */, ); name = Frameworks; sourceTree = ""; }; 444562E5C171B0509A57115EF70A7A87 /* Development Pods */ = { isa = PBXGroup; children = ( B2AB7B44B6F0EF15A3000758C128DD28 /* ScaledVisibleCellsCollectionView */, ); name = "Development Pods"; sourceTree = ""; }; 5E3AA3A6E125B84481816E9A666DB051 /* ScaledVisibleCellsCollectionView */ = { isa = PBXGroup; children = ( 05BBA3ACD5D30EF75E8805446B2EEE7E /* ScaledVisibleCellsCollectionView.h */, D8600799695F596092B749B4981BA6E6 /* ScaledVisibleCellsCollectionView.swift */, ); path = ScaledVisibleCellsCollectionView; sourceTree = ""; }; 7DB346D0F39D3F0E887471402A8071AB = { isa = PBXGroup; children = ( BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */, 444562E5C171B0509A57115EF70A7A87 /* Development Pods */, 433CD3331B6C3787F473C941B61FC68F /* Frameworks */, CCA510CFBEA2D207524CDA0D73C3B561 /* Products */, 231DA38102D0C3F7FF1A93B52876E8C2 /* Targets Support Files */, ); sourceTree = ""; }; B1C2BAB35198B3C03D7CF5DF5AB34917 /* Pods-ScaledVisibleCellsCollectionView_Tests */ = { isa = PBXGroup; children = ( 233476E1D2D8F64BF7B3A7661AF52D6E /* Info.plist */, 8965A99E76AF3BA809CD183534600E1F /* Pods-ScaledVisibleCellsCollectionView_Tests.modulemap */, C75DE6951CB7A9C272BBA7C9DFC69C2D /* Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.markdown */, 02699250E243D8FEBDC50CAD6D2E714C /* Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.plist */, 89AE12AD22BB19CF0F0C10D3684CDDE2 /* Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m */, E8845E3352258E16D7D0562D09C9F6A2 /* Pods-ScaledVisibleCellsCollectionView_Tests-frameworks.sh */, 4C8659B200A057815668101361B214D4 /* Pods-ScaledVisibleCellsCollectionView_Tests-resources.sh */, C7C4221BF9107FFC222B0BF3EA2238DB /* Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h */, 2C386884E1C545D3D08E0AA5F4A20B87 /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */, B236549017F8616ED38A472F27E675FD /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */, ); name = "Pods-ScaledVisibleCellsCollectionView_Tests"; path = "Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests"; sourceTree = ""; }; B2AB7B44B6F0EF15A3000758C128DD28 /* ScaledVisibleCellsCollectionView */ = { isa = PBXGroup; children = ( 5E3AA3A6E125B84481816E9A666DB051 /* ScaledVisibleCellsCollectionView */, 16EE5710D6D3CE1D761E89460CF70A4F /* Support Files */, ); name = ScaledVisibleCellsCollectionView; path = ../..; sourceTree = ""; }; CCA510CFBEA2D207524CDA0D73C3B561 /* Products */ = { isa = PBXGroup; children = ( 00EFAE8C540C313EECFE69A65BA2F134 /* Pods_ScaledVisibleCellsCollectionView_Example.framework */, 804C9E11D33E32FBDB77A66839F5AD05 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */, 51C67F71C7A817D06C5C46B87687885E /* ScaledVisibleCellsCollectionView.framework */, ); name = Products; sourceTree = ""; }; D0F582521A3DA50EE5C5C9E63E5362D8 /* Pods-ScaledVisibleCellsCollectionView_Example */ = { isa = PBXGroup; children = ( C2441ED66868A9C90322500C2306A322 /* Info.plist */, D7F0E2B05E26B9BF25CC438321B01F42 /* Pods-ScaledVisibleCellsCollectionView_Example.modulemap */, D2BF0FF0266E31A35814A36510F636FE /* Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.markdown */, 7F2FE28DDD7B1A312A193BA348098555 /* Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.plist */, 188CDE3E026875C505AA3A54D9C61938 /* Pods-ScaledVisibleCellsCollectionView_Example-dummy.m */, 3E14DD21E8B849AD18400C217C3F7BB3 /* Pods-ScaledVisibleCellsCollectionView_Example-frameworks.sh */, 3F7A1E8261ADA0E0392801D9E606B344 /* Pods-ScaledVisibleCellsCollectionView_Example-resources.sh */, 18766C201A819535B6FD6E239530C0CE /* Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h */, 4EEDC4EDF9AB3E73A25914185BCE95D4 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */, 55C85CF9C7E9145EE629F0EBE16033A5 /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */, ); name = "Pods-ScaledVisibleCellsCollectionView_Example"; path = "Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example"; sourceTree = ""; }; D0FB9306D21AF23A056944AE037CBFFF /* iOS */ = { isa = PBXGroup; children = ( A78979ED1230825E9ACF68472D46A72C /* Foundation.framework */, 5A1A2C91E45E453ADF8CEFEE38E20F74 /* UIKit.framework */, ); name = iOS; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ 0BB2C1A6D47E3CAADDE7A8B80A06DCF1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( FD1931D4B948FB9D5D5D9BE838FE9479 /* Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; 64F43CE845F2BCAADBFFF6C9E186A0DF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( 3C15648E5B8E91464DF72A3B74B14A2F /* ScaledVisibleCellsCollectionView-umbrella.h in Headers */, 42AE903BA63936FF5D33D3CE9E7407A6 /* ScaledVisibleCellsCollectionView.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; DBC3AD80DBBD0CA9BA41A825BF3D0E8B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( A8EE68EC0AD0A5CF5E2F6084C10F8142 /* Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ 26A3DB15CB154E70CE261AD2F93B684E /* ScaledVisibleCellsCollectionView */ = { isa = PBXNativeTarget; buildConfigurationList = AC843C861903CF17452564941C23E149 /* Build configuration list for PBXNativeTarget "ScaledVisibleCellsCollectionView" */; buildPhases = ( CC5B2C67F8A2DC5EBF8666105561937D /* Sources */, 901ACA354487299DABEF99B24587D009 /* Frameworks */, 64F43CE845F2BCAADBFFF6C9E186A0DF /* Headers */, ); buildRules = ( ); dependencies = ( ); name = ScaledVisibleCellsCollectionView; productName = ScaledVisibleCellsCollectionView; productReference = 51C67F71C7A817D06C5C46B87687885E /* ScaledVisibleCellsCollectionView.framework */; productType = "com.apple.product-type.framework"; }; 71627CC5EA3D51972A1B6E5FB6E79982 /* Pods-ScaledVisibleCellsCollectionView_Tests */ = { isa = PBXNativeTarget; buildConfigurationList = B7DC551967161313894B5FFE0CD3451A /* Build configuration list for PBXNativeTarget "Pods-ScaledVisibleCellsCollectionView_Tests" */; buildPhases = ( 15042EA509E51A24682FDCD493212111 /* Sources */, 80EB0632DF41BCCAFA8851A33B85FC76 /* Frameworks */, 0BB2C1A6D47E3CAADDE7A8B80A06DCF1 /* Headers */, ); buildRules = ( ); dependencies = ( 9243DD2FB76471B8BFD47E416811979F /* PBXTargetDependency */, ); name = "Pods-ScaledVisibleCellsCollectionView_Tests"; productName = "Pods-ScaledVisibleCellsCollectionView_Tests"; productReference = 804C9E11D33E32FBDB77A66839F5AD05 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */; productType = "com.apple.product-type.framework"; }; A453FBB5EB73355AB1C979A90D7C9353 /* Pods-ScaledVisibleCellsCollectionView_Example */ = { isa = PBXNativeTarget; buildConfigurationList = 22281D0D75B693B79DD31EA65AE12622 /* Build configuration list for PBXNativeTarget "Pods-ScaledVisibleCellsCollectionView_Example" */; buildPhases = ( 34E4ADDBE8DEAB108F56871A208F15FC /* Sources */, B88C00B2EF7B6D359AAB1C54EAFF5306 /* Frameworks */, DBC3AD80DBBD0CA9BA41A825BF3D0E8B /* Headers */, ); buildRules = ( ); dependencies = ( 9C4A7891F3A9736911FA02CB67A75BC6 /* PBXTargetDependency */, ); name = "Pods-ScaledVisibleCellsCollectionView_Example"; productName = "Pods-ScaledVisibleCellsCollectionView_Example"; productReference = 00EFAE8C540C313EECFE69A65BA2F134 /* Pods_ScaledVisibleCellsCollectionView_Example.framework */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = 0700; LastUpgradeCheck = 0700; }; buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( en, ); mainGroup = 7DB346D0F39D3F0E887471402A8071AB; productRefGroup = CCA510CFBEA2D207524CDA0D73C3B561 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( A453FBB5EB73355AB1C979A90D7C9353 /* Pods-ScaledVisibleCellsCollectionView_Example */, 71627CC5EA3D51972A1B6E5FB6E79982 /* Pods-ScaledVisibleCellsCollectionView_Tests */, 26A3DB15CB154E70CE261AD2F93B684E /* ScaledVisibleCellsCollectionView */, ); }; /* End PBXProject section */ /* Begin PBXSourcesBuildPhase section */ 15042EA509E51A24682FDCD493212111 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( D27C67CCA7F9C39FEB03B4B2E4DB4423 /* Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; 34E4ADDBE8DEAB108F56871A208F15FC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 4CF0319A1A608A6F9EF8D0E325B6BCB3 /* Pods-ScaledVisibleCellsCollectionView_Example-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; CC5B2C67F8A2DC5EBF8666105561937D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( E5B7BE6841D0AD6199435379D1445BD0 /* ScaledVisibleCellsCollectionView-dummy.m in Sources */, 7912CCF5480E61977C053C68E422AB55 /* ScaledVisibleCellsCollectionView.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ 9243DD2FB76471B8BFD47E416811979F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ScaledVisibleCellsCollectionView; target = 26A3DB15CB154E70CE261AD2F93B684E /* ScaledVisibleCellsCollectionView */; targetProxy = 4BC88A2073A97447F76FB9449DE91091 /* PBXContainerItemProxy */; }; 9C4A7891F3A9736911FA02CB67A75BC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ScaledVisibleCellsCollectionView; target = 26A3DB15CB154E70CE261AD2F93B684E /* ScaledVisibleCellsCollectionView */; targetProxy = 9645CD1890DCB8EC235B00353A768C34 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ 10DE1947DAC0ED28F6C0A9F9BD75D546 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = YES; ENABLE_NS_ASSERTIONS = NO; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 8.3; STRIP_INSTALLED_PRODUCT = NO; SYMROOT = "${SRCROOT}/../build"; VALIDATE_PRODUCT = YES; }; name = Release; }; 11E4223C0933713CF9BD6BAF2A8FA30A /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = B236549017F8616ED38A472F27E675FD /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; INFOPLIST_FILE = "Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.3; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_NAME = Pods_ScaledVisibleCellsCollectionView_Tests; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; 3F94D07753C30280077A82DF04F00895 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2C75DD2678EFA6CAD4C3D08FB3C6D1B1 /* ScaledVisibleCellsCollectionView-Private.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 0.2.0; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0.2.0; DYLIB_CURRENT_VERSION = "$(CURRENT_PROJECT_VERSION)"; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-prefix.pch"; INFOPLIST_FILE = "Target Support Files/ScaledVisibleCellsCollectionView/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.3; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; PRODUCT_NAME = ScaledVisibleCellsCollectionView; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; 552D02D5BA751AC2E8790D2811D496CA /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); GCC_SYMBOLS_PRIVATE_EXTERN = NO; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 8.3; ONLY_ACTIVE_ARCH = YES; STRIP_INSTALLED_PRODUCT = NO; SYMROOT = "${SRCROOT}/../build"; }; name = Debug; }; 649CB1E83EFA86ED9E7C997FE7DA9EAC /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 4EEDC4EDF9AB3E73A25914185BCE95D4 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; INFOPLIST_FILE = "Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.3; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_NAME = Pods_ScaledVisibleCellsCollectionView_Example; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; 9882D9708C5497E0874CDFD35C1DE597 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 55C85CF9C7E9145EE629F0EBE16033A5 /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; INFOPLIST_FILE = "Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.3; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_NAME = Pods_ScaledVisibleCellsCollectionView_Example; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; AD2E547EAF82DD5B6594B19DDE35F992 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2C386884E1C545D3D08E0AA5F4A20B87 /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; INFOPLIST_FILE = "Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.3; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_NAME = Pods_ScaledVisibleCellsCollectionView_Tests; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; EC219E66551E971AF8356959DD6E6F0A /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2C75DD2678EFA6CAD4C3D08FB3C6D1B1 /* ScaledVisibleCellsCollectionView-Private.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 0.2.0; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0.2.0; DYLIB_CURRENT_VERSION = "$(CURRENT_PROJECT_VERSION)"; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-prefix.pch"; INFOPLIST_FILE = "Target Support Files/ScaledVisibleCellsCollectionView/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.3; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; PRODUCT_NAME = ScaledVisibleCellsCollectionView; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ 22281D0D75B693B79DD31EA65AE12622 /* Build configuration list for PBXNativeTarget "Pods-ScaledVisibleCellsCollectionView_Example" */ = { isa = XCConfigurationList; buildConfigurations = ( 649CB1E83EFA86ED9E7C997FE7DA9EAC /* Debug */, 9882D9708C5497E0874CDFD35C1DE597 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( 552D02D5BA751AC2E8790D2811D496CA /* Debug */, 10DE1947DAC0ED28F6C0A9F9BD75D546 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; AC843C861903CF17452564941C23E149 /* Build configuration list for PBXNativeTarget "ScaledVisibleCellsCollectionView" */ = { isa = XCConfigurationList; buildConfigurations = ( 3F94D07753C30280077A82DF04F00895 /* Debug */, EC219E66551E971AF8356959DD6E6F0A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; B7DC551967161313894B5FFE0CD3451A /* Build configuration list for PBXNativeTarget "Pods-ScaledVisibleCellsCollectionView_Tests" */ = { isa = XCConfigurationList; buildConfigurations = ( AD2E547EAF82DD5B6594B19DDE35F992 /* Debug */, 11E4223C0933713CF9BD6BAF2A8FA30A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; } ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-ScaledVisibleCellsCollectionView_Example-ScaledVisibleCellsCollectionView-ScaledVisibleCellsCollectionView.xcscheme ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-ScaledVisibleCellsCollectionView_Example-ScaledVisibleCellsCollectionView.xcscheme ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-ScaledVisibleCellsCollectionView_Tests-ScaledVisibleCellsCollectionView-ScaledVisibleCellsCollectionView.xcscheme ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-ScaledVisibleCellsCollectionView_Tests-ScaledVisibleCellsCollectionView.xcscheme ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/ScaledVisibleCellsCollectionView.xcscheme ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/Pods-ScaledVisibleCellsCollectionView_Example.xcscheme ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/Pods-ScaledVisibleCellsCollectionView_Tests.xcscheme ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/xcschememanagement.plist ================================================ SchemeUserState Pods-ScaledVisibleCellsCollectionView_Example.xcscheme isShown Pods-ScaledVisibleCellsCollectionView_Tests.xcscheme isShown ScaledVisibleCellsCollectionView.xcscheme isShown SuppressBuildableAutocreation 26A3DB15CB154E70CE261AD2F93B684E primary 71627CC5EA3D51972A1B6E5FB6E79982 primary A453FBB5EB73355AB1C979A90D7C9353 primary ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Info.plist ================================================ CFBundleDevelopmentRegion en CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier org.cocoapods.${PRODUCT_NAME:rfc1034identifier} CFBundleInfoDictionaryVersion 6.0 CFBundleName ${PRODUCT_NAME} CFBundlePackageType FMWK CFBundleShortVersionString 1.0.0 CFBundleSignature ???? CFBundleVersion ${CURRENT_PROJECT_VERSION} NSPrincipalClass ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.markdown ================================================ # Acknowledgements This application makes use of the following third party libraries: ## ScaledVisibleCellsCollectionView Copyright (c) 2015 ikemai Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Generated by CocoaPods - http://cocoapods.org ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.plist ================================================ PreferenceSpecifiers FooterText This application makes use of the following third party libraries: Title Acknowledgements Type PSGroupSpecifier FooterText Copyright (c) 2015 ikemai <ikeda_mai@cyberagent.co.jp> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Title ScaledVisibleCellsCollectionView Type PSGroupSpecifier FooterText Generated by CocoaPods - http://cocoapods.org Title Type PSGroupSpecifier StringsTable Acknowledgements Title Acknowledgements ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-dummy.m ================================================ #import @interface PodsDummy_Pods_ScaledVisibleCellsCollectionView_Example : NSObject @end @implementation PodsDummy_Pods_ScaledVisibleCellsCollectionView_Example @end ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-frameworks.sh ================================================ #!/bin/sh set -e echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" install_framework() { if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then local source="${BUILT_PRODUCTS_DIR}/$1" else local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" fi local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" if [ -L "${source}" ]; then echo "Symlinked..." source="$(readlink "${source}")" fi # use filter instead of exclude so missing patterns dont' throw errors echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" # Resign the code if required by the build settings to avoid unstable apps code_sign_if_enabled "${destination}/$(basename "$1")" # Embed linked Swift runtime libraries local basename basename="$(basename "$1" | sed -E s/\\..+// && exit ${PIPESTATUS[0]})" local swift_runtime_libs swift_runtime_libs=$(xcrun otool -LX "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/${basename}.framework/${basename}" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) for lib in $swift_runtime_libs; do echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" code_sign_if_enabled "${destination}/${lib}" done } # Signs a framework with the provided identity code_sign_if_enabled() { if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then # Use the current code_sign_identitiy echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"" /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" fi } if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework 'Pods-ScaledVisibleCellsCollectionView_Example/ScaledVisibleCellsCollectionView.framework' fi if [[ "$CONFIGURATION" == "Release" ]]; then install_framework 'Pods-ScaledVisibleCellsCollectionView_Example/ScaledVisibleCellsCollectionView.framework' fi ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-resources.sh ================================================ #!/bin/sh set -e mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt > "$RESOURCES_TO_COPY" XCASSET_FILES=() realpath() { DIRECTORY="$(cd "${1%/*}" && pwd)" FILENAME="${1##*/}" echo "$DIRECTORY/$FILENAME" } install_resource() { case $1 in *.storyboard) echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" ;; *.xib) echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" ;; *.framework) echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" ;; *.xcdatamodel) echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" ;; *.xcdatamodeld) echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" ;; *.xcmappingmodel) echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" ;; *.xcassets) ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") ;; /*) echo "$1" echo "$1" >> "$RESOURCES_TO_COPY" ;; *) echo "${PODS_ROOT}/$1" echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" ;; esac } mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" if [[ "${ACTION}" == "install" ]]; then mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" fi rm -f "$RESOURCES_TO_COPY" if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] then case "${TARGETED_DEVICE_FAMILY}" in 1,2) TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" ;; 1) TARGET_DEVICE_ARGS="--target-device iphone" ;; 2) TARGET_DEVICE_ARGS="--target-device ipad" ;; *) TARGET_DEVICE_ARGS="--target-device mac" ;; esac # Find all other xcassets (this unfortunately includes those of path pods and other targets). OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) while read line; do if [[ $line != "`realpath $PODS_ROOT`*" ]]; then XCASSET_FILES+=("$line") fi done <<<"$OTHER_XCASSETS" printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" fi ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h ================================================ #import FOUNDATION_EXPORT double Pods_ScaledVisibleCellsCollectionView_ExampleVersionNumber; FOUNDATION_EXPORT const unsigned char Pods_ScaledVisibleCellsCollectionView_ExampleVersionString[]; ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig ================================================ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/ScaledVisibleCellsCollectionView.framework/Headers" OTHER_LDFLAGS = $(inherited) -framework "ScaledVisibleCellsCollectionView" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ScaledVisibleCellsCollectionView_Example PODS_ROOT = ${SRCROOT}/Pods ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.modulemap ================================================ framework module Pods_ScaledVisibleCellsCollectionView_Example { umbrella header "Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h" export * module * { export * } } ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig ================================================ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/ScaledVisibleCellsCollectionView.framework/Headers" OTHER_LDFLAGS = $(inherited) -framework "ScaledVisibleCellsCollectionView" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ScaledVisibleCellsCollectionView_Example PODS_ROOT = ${SRCROOT}/Pods ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Info.plist ================================================ CFBundleDevelopmentRegion en CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier org.cocoapods.${PRODUCT_NAME:rfc1034identifier} CFBundleInfoDictionaryVersion 6.0 CFBundleName ${PRODUCT_NAME} CFBundlePackageType FMWK CFBundleShortVersionString 1.0.0 CFBundleSignature ???? CFBundleVersion ${CURRENT_PROJECT_VERSION} NSPrincipalClass ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.markdown ================================================ # Acknowledgements This application makes use of the following third party libraries: ## ScaledVisibleCellsCollectionView Copyright (c) 2015 ikemai Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Generated by CocoaPods - http://cocoapods.org ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.plist ================================================ PreferenceSpecifiers FooterText This application makes use of the following third party libraries: Title Acknowledgements Type PSGroupSpecifier FooterText Copyright (c) 2015 ikemai <ikeda_mai@cyberagent.co.jp> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Title ScaledVisibleCellsCollectionView Type PSGroupSpecifier FooterText Generated by CocoaPods - http://cocoapods.org Title Type PSGroupSpecifier StringsTable Acknowledgements Title Acknowledgements ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m ================================================ #import @interface PodsDummy_Pods_ScaledVisibleCellsCollectionView_Tests : NSObject @end @implementation PodsDummy_Pods_ScaledVisibleCellsCollectionView_Tests @end ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-frameworks.sh ================================================ #!/bin/sh set -e echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" install_framework() { if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then local source="${BUILT_PRODUCTS_DIR}/$1" else local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" fi local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" if [ -L "${source}" ]; then echo "Symlinked..." source="$(readlink "${source}")" fi # use filter instead of exclude so missing patterns dont' throw errors echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" # Resign the code if required by the build settings to avoid unstable apps code_sign_if_enabled "${destination}/$(basename "$1")" # Embed linked Swift runtime libraries local basename basename="$(basename "$1" | sed -E s/\\..+// && exit ${PIPESTATUS[0]})" local swift_runtime_libs swift_runtime_libs=$(xcrun otool -LX "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/${basename}.framework/${basename}" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) for lib in $swift_runtime_libs; do echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" code_sign_if_enabled "${destination}/${lib}" done } # Signs a framework with the provided identity code_sign_if_enabled() { if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then # Use the current code_sign_identitiy echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"" /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" fi } if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework 'Pods-ScaledVisibleCellsCollectionView_Tests/ScaledVisibleCellsCollectionView.framework' fi if [[ "$CONFIGURATION" == "Release" ]]; then install_framework 'Pods-ScaledVisibleCellsCollectionView_Tests/ScaledVisibleCellsCollectionView.framework' fi ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-resources.sh ================================================ #!/bin/sh set -e mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt > "$RESOURCES_TO_COPY" XCASSET_FILES=() realpath() { DIRECTORY="$(cd "${1%/*}" && pwd)" FILENAME="${1##*/}" echo "$DIRECTORY/$FILENAME" } install_resource() { case $1 in *.storyboard) echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" ;; *.xib) echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" ;; *.framework) echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" ;; *.xcdatamodel) echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" ;; *.xcdatamodeld) echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" ;; *.xcmappingmodel) echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" ;; *.xcassets) ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") ;; /*) echo "$1" echo "$1" >> "$RESOURCES_TO_COPY" ;; *) echo "${PODS_ROOT}/$1" echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" ;; esac } mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" if [[ "${ACTION}" == "install" ]]; then mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" fi rm -f "$RESOURCES_TO_COPY" if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] then case "${TARGETED_DEVICE_FAMILY}" in 1,2) TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" ;; 1) TARGET_DEVICE_ARGS="--target-device iphone" ;; 2) TARGET_DEVICE_ARGS="--target-device ipad" ;; *) TARGET_DEVICE_ARGS="--target-device mac" ;; esac # Find all other xcassets (this unfortunately includes those of path pods and other targets). OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) while read line; do if [[ $line != "`realpath $PODS_ROOT`*" ]]; then XCASSET_FILES+=("$line") fi done <<<"$OTHER_XCASSETS" printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" fi ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h ================================================ #import FOUNDATION_EXPORT double Pods_ScaledVisibleCellsCollectionView_TestsVersionNumber; FOUNDATION_EXPORT const unsigned char Pods_ScaledVisibleCellsCollectionView_TestsVersionString[]; ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig ================================================ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/ScaledVisibleCellsCollectionView.framework/Headers" OTHER_LDFLAGS = $(inherited) -framework "ScaledVisibleCellsCollectionView" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ScaledVisibleCellsCollectionView_Tests PODS_ROOT = ${SRCROOT}/Pods ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.modulemap ================================================ framework module Pods_ScaledVisibleCellsCollectionView_Tests { umbrella header "Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h" export * module * { export * } } ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig ================================================ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/ScaledVisibleCellsCollectionView.framework/Headers" OTHER_LDFLAGS = $(inherited) -framework "ScaledVisibleCellsCollectionView" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ScaledVisibleCellsCollectionView_Tests PODS_ROOT = ${SRCROOT}/Pods ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/Info.plist ================================================ CFBundleDevelopmentRegion en CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier org.cocoapods.${PRODUCT_NAME:rfc1034identifier} CFBundleInfoDictionaryVersion 6.0 CFBundleName ${PRODUCT_NAME} CFBundlePackageType FMWK CFBundleShortVersionString 0.2.0 CFBundleSignature ???? CFBundleVersion ${CURRENT_PROJECT_VERSION} NSPrincipalClass ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-Private.xcconfig ================================================ #include "ScaledVisibleCellsCollectionView.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/ScaledVisibleCellsCollectionView" "${PODS_ROOT}/Headers/Public" OTHER_LDFLAGS = ${SCALEDVISIBLECELLSCOLLECTIONVIEW_OTHER_LDFLAGS} OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-dummy.m ================================================ #import @interface PodsDummy_ScaledVisibleCellsCollectionView : NSObject @end @implementation PodsDummy_ScaledVisibleCellsCollectionView @end ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-prefix.pch ================================================ #ifdef __OBJC__ #import #endif ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-umbrella.h ================================================ #import #import "ScaledVisibleCellsCollectionView.h" FOUNDATION_EXPORT double ScaledVisibleCellsCollectionViewVersionNumber; FOUNDATION_EXPORT const unsigned char ScaledVisibleCellsCollectionViewVersionString[]; ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.modulemap ================================================ framework module ScaledVisibleCellsCollectionView { umbrella header "ScaledVisibleCellsCollectionView-umbrella.h" export * module * { export * } } ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.xcconfig ================================================ SCALEDVISIBLECELLSCOLLECTIONVIEW_OTHER_LDFLAGS = -framework "UIKit" ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/AppDelegate.swift ================================================ // // AppDelegate.swift // ScaledVisibleCellsCollectionView // // Created by ikemai on 08/22/2015. // Copyright (c) 2015 ikemai. All rights reserved. // import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { // Override point for customization after application launch. return true } func applicationWillResignActive(application: UIApplication) { // 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. // 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. } func applicationDidEnterBackground(application: UIApplication) { // 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. // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. } func applicationWillEnterForeground(application: UIApplication) { // 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. } func applicationDidBecomeActive(application: UIApplication) { // 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. } func applicationWillTerminate(application: UIApplication) { // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. } } ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/Base.lproj/LaunchScreen.xib ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/Base.lproj/Main.storyboard ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/Images.xcassets/AppIcon.appiconset/Contents.json ================================================ { "images" : [ { "idiom" : "iphone", "size" : "29x29", "scale" : "2x" }, { "idiom" : "iphone", "size" : "29x29", "scale" : "3x" }, { "idiom" : "iphone", "size" : "40x40", "scale" : "2x" }, { "idiom" : "iphone", "size" : "40x40", "scale" : "3x" }, { "idiom" : "iphone", "size" : "60x60", "scale" : "2x" }, { "idiom" : "iphone", "size" : "60x60", "scale" : "3x" } ], "info" : { "version" : 1, "author" : "xcode" } } ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/Info.plist ================================================ CFBundleDevelopmentRegion en CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier) CFBundleInfoDictionaryVersion 6.0 CFBundleName $(PRODUCT_NAME) CFBundlePackageType APPL CFBundleShortVersionString 1.0 CFBundleSignature ???? CFBundleVersion 1 LSRequiresIPhoneOS UILaunchStoryboardName LaunchScreen UIMainStoryboardFile Main UIRequiredDeviceCapabilities armv7 UISupportedInterfaceOrientations UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/ViewController.swift ================================================ // // ViewController.swift // ScaledVisibleCellsCollectionView // // Created by ikemai on 08/22/2015. // Copyright (c) 2015 ikemai. All rights reserved. // import UIKit import ScaledVisibleCellsCollectionView class ViewController: UIViewController { @IBOutlet weak var collectionView: UICollectionView! private let cellIdentifier = "CollectionCell" override func viewDidLoad() { super.viewDidLoad() // Example: set 'VerticalCenter' collectionView.setScaledDesginParam(scaledPattern: .VerticalCenter, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5) // Example: set 'VerticalTop' // collectionView.setScaledDesginParam(scaledPattern: .VerticalTop, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5) // Example: set 'VerticalBottom' // collectionView.setScaledDesginParam(scaledPattern: .VerticalBottom, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5) // Example: set 'HorizontalCenter' // collectionView.setScaledDesginParam(scaledPattern: .HorizontalCenter, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5) // Example: set 'HorizontalLeft' // collectionView.setScaledDesginParam(scaledPattern: .HorizontalLeft, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5) // Example: set 'HorizontalRight' // collectionView.setScaledDesginParam(scaledPattern: .HorizontalRight, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5) collectionView.delegate = self collectionView.dataSource = self } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } } // // MARK: - UICollectionViewDataSource, UICollectionViewDelegate // extension ViewController: UICollectionViewDataSource, UICollectionViewDelegate { func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return 100 } func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell { let cell: AnyObject = collectionView.dequeueReusableCellWithReuseIdentifier(cellIdentifier, forIndexPath: indexPath) return cell as! UICollectionViewCell } } // // MARK: - UIScrollViewDelegate // extension ViewController: UIScrollViewDelegate { func scrollViewDidScroll(scrollView: UIScrollView) { collectionView.scaledVisibleCells() } } ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcodeproj/project.pbxproj ================================================ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 46; objects = { /* Begin PBXBuildFile section */ 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 6B0296818D5A66AC602F693D /* Pods_ScaledVisibleCellsCollectionView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95F45565AC2EAE6D3B928F48 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; F8DFCACFF16F793A5DBEA2FB /* Pods_ScaledVisibleCellsCollectionView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 48F7329C9D29CB922F1483CA /* Pods_ScaledVisibleCellsCollectionView_Example.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 607FACC81AFB9204008FA782 /* Project object */; proxyType = 1; remoteGlobalIDString = 607FACCF1AFB9204008FA782; remoteInfo = ScaledVisibleCellsCollectionView; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 4119CA378EA4FB2D23641F50 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig"; sourceTree = ""; }; 48F7329C9D29CB922F1483CA /* Pods_ScaledVisibleCellsCollectionView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScaledVisibleCellsCollectionView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 607FACD01AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ScaledVisibleCellsCollectionView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 607FACE51AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ScaledVisibleCellsCollectionView_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 6A74583C730ED5CE33C9A66E /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig"; sourceTree = ""; }; 8AC5D4A86B766122FF7C646B /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig"; sourceTree = ""; }; 95F45565AC2EAE6D3B928F48 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScaledVisibleCellsCollectionView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 9F0B4791C42FC8DD6AE6D2FD /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig"; sourceTree = ""; }; A201E400A4FCA3ED9CE3E4CE /* ScaledVisibleCellsCollectionView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = ScaledVisibleCellsCollectionView.podspec; path = ../ScaledVisibleCellsCollectionView.podspec; sourceTree = ""; }; D4D64C069591C25CE4B98816 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; D8EEBE5D096E2B737242F356 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ 607FACCD1AFB9204008FA782 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( F8DFCACFF16F793A5DBEA2FB /* Pods_ScaledVisibleCellsCollectionView_Example.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; 607FACE21AFB9204008FA782 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 6B0296818D5A66AC602F693D /* Pods_ScaledVisibleCellsCollectionView_Tests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 3619101D92F6045F79F143BB /* Pods */ = { isa = PBXGroup; children = ( 4119CA378EA4FB2D23641F50 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */, 9F0B4791C42FC8DD6AE6D2FD /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */, 6A74583C730ED5CE33C9A66E /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */, 8AC5D4A86B766122FF7C646B /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */, ); name = Pods; sourceTree = ""; }; 3D8483429D732A2A2DFFCC46 /* Frameworks */ = { isa = PBXGroup; children = ( 48F7329C9D29CB922F1483CA /* Pods_ScaledVisibleCellsCollectionView_Example.framework */, 95F45565AC2EAE6D3B928F48 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */, ); name = Frameworks; sourceTree = ""; }; 607FACC71AFB9204008FA782 = { isa = PBXGroup; children = ( 607FACF51AFB993E008FA782 /* Podspec Metadata */, 607FACD21AFB9204008FA782 /* Example for ScaledVisibleCellsCollectionView */, 607FACE81AFB9204008FA782 /* Tests */, 607FACD11AFB9204008FA782 /* Products */, 3619101D92F6045F79F143BB /* Pods */, 3D8483429D732A2A2DFFCC46 /* Frameworks */, ); indentWidth = 4; sourceTree = ""; tabWidth = 4; }; 607FACD11AFB9204008FA782 /* Products */ = { isa = PBXGroup; children = ( 607FACD01AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example.app */, 607FACE51AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Tests.xctest */, ); name = Products; sourceTree = ""; }; 607FACD21AFB9204008FA782 /* Example for ScaledVisibleCellsCollectionView */ = { isa = PBXGroup; children = ( 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 607FACD71AFB9204008FA782 /* ViewController.swift */, 607FACD91AFB9204008FA782 /* Main.storyboard */, 607FACDC1AFB9204008FA782 /* Images.xcassets */, 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 607FACD31AFB9204008FA782 /* Supporting Files */, ); name = "Example for ScaledVisibleCellsCollectionView"; path = ScaledVisibleCellsCollectionView; sourceTree = ""; }; 607FACD31AFB9204008FA782 /* Supporting Files */ = { isa = PBXGroup; children = ( 607FACD41AFB9204008FA782 /* Info.plist */, ); name = "Supporting Files"; sourceTree = ""; }; 607FACE81AFB9204008FA782 /* Tests */ = { isa = PBXGroup; children = ( 607FACEB1AFB9204008FA782 /* Tests.swift */, 607FACE91AFB9204008FA782 /* Supporting Files */, ); path = Tests; sourceTree = ""; }; 607FACE91AFB9204008FA782 /* Supporting Files */ = { isa = PBXGroup; children = ( 607FACEA1AFB9204008FA782 /* Info.plist */, ); name = "Supporting Files"; sourceTree = ""; }; 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { isa = PBXGroup; children = ( A201E400A4FCA3ED9CE3E4CE /* ScaledVisibleCellsCollectionView.podspec */, D4D64C069591C25CE4B98816 /* README.md */, D8EEBE5D096E2B737242F356 /* LICENSE */, ); name = "Podspec Metadata"; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ 607FACCF1AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example */ = { isa = PBXNativeTarget; buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ScaledVisibleCellsCollectionView_Example" */; buildPhases = ( 4DBF6C81A5E96FFB029415C8 /* Check Pods Manifest.lock */, 607FACCC1AFB9204008FA782 /* Sources */, 607FACCD1AFB9204008FA782 /* Frameworks */, 607FACCE1AFB9204008FA782 /* Resources */, 659679747CB55D08021EB048 /* Embed Pods Frameworks */, 84D4262E013E4CCCA7CACEAE /* Copy Pods Resources */, ); buildRules = ( ); dependencies = ( ); name = ScaledVisibleCellsCollectionView_Example; productName = ScaledVisibleCellsCollectionView; productReference = 607FACD01AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example.app */; productType = "com.apple.product-type.application"; }; 607FACE41AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Tests */ = { isa = PBXNativeTarget; buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ScaledVisibleCellsCollectionView_Tests" */; buildPhases = ( 3300545ECA4AAF9EB5E8C882 /* Check Pods Manifest.lock */, 607FACE11AFB9204008FA782 /* Sources */, 607FACE21AFB9204008FA782 /* Frameworks */, 607FACE31AFB9204008FA782 /* Resources */, 3476C8678C030FE5A90E7759 /* Embed Pods Frameworks */, EED75074E6812FB1730B7FBD /* Copy Pods Resources */, ); buildRules = ( ); dependencies = ( 607FACE71AFB9204008FA782 /* PBXTargetDependency */, ); name = ScaledVisibleCellsCollectionView_Tests; productName = Tests; productReference = 607FACE51AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Tests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ 607FACC81AFB9204008FA782 /* Project object */ = { isa = PBXProject; attributes = { LastSwiftMigration = 0700; LastSwiftUpdateCheck = 0700; LastUpgradeCheck = 0630; ORGANIZATIONNAME = CocoaPods; TargetAttributes = { 607FACCF1AFB9204008FA782 = { CreatedOnToolsVersion = 6.3.1; }; 607FACE41AFB9204008FA782 = { CreatedOnToolsVersion = 6.3.1; TestTargetID = 607FACCF1AFB9204008FA782; }; }; }; buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "ScaledVisibleCellsCollectionView" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( en, Base, ); mainGroup = 607FACC71AFB9204008FA782; productRefGroup = 607FACD11AFB9204008FA782 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 607FACCF1AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example */, 607FACE41AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Tests */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ 607FACCE1AFB9204008FA782 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; 607FACE31AFB9204008FA782 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ 3300545ECA4AAF9EB5E8C882 /* Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Check Pods Manifest.lock"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; showEnvVarsInLog = 0; }; 3476C8678C030FE5A90E7759 /* Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Embed Pods Frameworks"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; 4DBF6C81A5E96FFB029415C8 /* Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Check Pods Manifest.lock"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; showEnvVarsInLog = 0; }; 659679747CB55D08021EB048 /* Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Embed Pods Frameworks"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; 84D4262E013E4CCCA7CACEAE /* Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Copy Pods Resources"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-resources.sh\"\n"; showEnvVarsInLog = 0; }; EED75074E6812FB1730B7FBD /* Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Copy Pods Resources"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-resources.sh\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ 607FACCC1AFB9204008FA782 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; 607FACE11AFB9204008FA782 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; target = 607FACCF1AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example */; targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXVariantGroup section */ 607FACD91AFB9204008FA782 /* Main.storyboard */ = { isa = PBXVariantGroup; children = ( 607FACDA1AFB9204008FA782 /* Base */, ); name = Main.storyboard; sourceTree = ""; }; 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { isa = PBXVariantGroup; children = ( 607FACDF1AFB9204008FA782 /* Base */, ); name = LaunchScreen.xib; sourceTree = ""; }; /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ 607FACED1AFB9204008FA782 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); GCC_SYMBOLS_PRIVATE_EXTERN = NO; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 8.3; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; }; name = Debug; }; 607FACEE1AFB9204008FA782 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 8.3; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; VALIDATE_PRODUCT = YES; }; name = Release; }; 607FACF01AFB9204008FA782 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 4119CA378EA4FB2D23641F50 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; INFOPLIST_FILE = ScaledVisibleCellsCollectionView/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; MODULE_NAME = ExampleApp; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Debug; }; 607FACF11AFB9204008FA782 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 9F0B4791C42FC8DD6AE6D2FD /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; INFOPLIST_FILE = ScaledVisibleCellsCollectionView/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; MODULE_NAME = ExampleApp; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; }; 607FACF31AFB9204008FA782 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 6A74583C730ED5CE33C9A66E /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; FRAMEWORK_SEARCH_PATHS = ( "$(SDKROOT)/Developer/Library/Frameworks", "$(inherited)", ); GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); INFOPLIST_FILE = Tests/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_NAME = "$(TARGET_NAME)"; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ScaledVisibleCellsCollectionView_Example.app/ScaledVisibleCellsCollectionView_Example"; }; name = Debug; }; 607FACF41AFB9204008FA782 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 8AC5D4A86B766122FF7C646B /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; FRAMEWORK_SEARCH_PATHS = ( "$(SDKROOT)/Developer/Library/Frameworks", "$(inherited)", ); INFOPLIST_FILE = Tests/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_NAME = "$(TARGET_NAME)"; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ScaledVisibleCellsCollectionView_Example.app/ScaledVisibleCellsCollectionView_Example"; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "ScaledVisibleCellsCollectionView" */ = { isa = XCConfigurationList; buildConfigurations = ( 607FACED1AFB9204008FA782 /* Debug */, 607FACEE1AFB9204008FA782 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ScaledVisibleCellsCollectionView_Example" */ = { isa = XCConfigurationList; buildConfigurations = ( 607FACF01AFB9204008FA782 /* Debug */, 607FACF11AFB9204008FA782 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ScaledVisibleCellsCollectionView_Tests" */ = { isa = XCConfigurationList; buildConfigurations = ( 607FACF31AFB9204008FA782 /* Debug */, 607FACF41AFB9204008FA782 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; rootObject = 607FACC81AFB9204008FA782 /* Project object */; } ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcodeproj/xcshareddata/xcschemes/ScaledVisibleCellsCollectionView-Example.xcscheme ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/xcschememanagement.plist ================================================ SuppressBuildableAutocreation 607FACCF1AFB9204008FA782 primary 607FACE41AFB9204008FA782 primary ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcworkspace/contents.xcworkspacedata ================================================ ================================================ FILE: ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcworkspace/xcshareddata/ScaledVisibleCellsCollectionView.xccheckout ================================================ IDESourceControlProjectFavoriteDictionaryKey IDESourceControlProjectIdentifier DFEBC038-48CA-4125-AF74-FD1A1BF9D88D IDESourceControlProjectName ScaledVisibleCellsCollectionView IDESourceControlProjectOriginsDictionary B3EF76A2567DC792311C6177A929DB9D96C39798 https://github.com/ikemai/ScaledVisibleCellsCollectionView.git IDESourceControlProjectPath ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcworkspace IDESourceControlProjectRelativeInstallPathDictionary B3EF76A2567DC792311C6177A929DB9D96C39798 ../.. IDESourceControlProjectURL https://github.com/ikemai/ScaledVisibleCellsCollectionView.git IDESourceControlProjectVersion 111 IDESourceControlProjectWCCIdentifier B3EF76A2567DC792311C6177A929DB9D96C39798 IDESourceControlProjectWCConfigurations IDESourceControlRepositoryExtensionIdentifierKey public.vcs.git IDESourceControlWCCIdentifierKey B3EF76A2567DC792311C6177A929DB9D96C39798 IDESourceControlWCCName ScaledVisibleCellsCollectionView ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Tests/Info.plist ================================================ CFBundleDevelopmentRegion en CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier org.cocoapods.$(PRODUCT_NAME:rfc1034identifier) CFBundleInfoDictionaryVersion 6.0 CFBundleName $(PRODUCT_NAME) CFBundlePackageType BNDL CFBundleShortVersionString 1.0 CFBundleSignature ???? CFBundleVersion 1 ================================================ FILE: ScaledVisibleCellsCollectionViewExample/Tests/Tests.swift ================================================ //// https://github.com/Quick/Quick // //import ScaledVisibleCellsCollectionView // //class TableOfContentsSpec: QuickSpec { // override func spec() { // describe("these will fail") { // // it("can do maths") { // expect(1) == 2 // } // // it("can read") { // expect("number") == "string" // } // // it("will eventually fail") { // expect("time").toEventually( equal("done") ) // } // // context("these will pass") { // // it("can do maths") { // expect(23) == 23 // } // // it("can read") { // expect("🐮") == "🐮" // } // // it("will eventually pass") { // var time = "passing" // // dispatch_async(dispatch_get_main_queue()) { // time = "done" // } // // waitUntil { done in // NSThread.sleepForTimeInterval(0.5) // expect(time) == "done" // // done() // } // } // } // } // } //} ================================================ FILE: ScaledVisibleCellsCollectionViewTests/Info.plist ================================================ CFBundleDevelopmentRegion en CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier jp.mai.ikeda.$(PRODUCT_NAME:rfc1034identifier) CFBundleInfoDictionaryVersion 6.0 CFBundleName $(PRODUCT_NAME) CFBundlePackageType BNDL CFBundleShortVersionString 1.0 CFBundleSignature ???? CFBundleVersion 1 ================================================ FILE: ScaledVisibleCellsCollectionViewTests/ScaledVisibleCellsCollectionViewTests.swift ================================================ // // ScaledVisibleCellsCollectionViewTests.swift // ScaledVisibleCellsCollectionViewTests // // Created by Mai Ikeda on 2015/08/22. // Copyright (c) 2015年 mai_ikeda. All rights reserved. // import UIKit import XCTest class ScaledVisibleCellsCollectionViewTests: XCTestCase { override func setUp() { super.setUp() // Put setup code here. This method is called before the invocation of each test method in the class. } override func tearDown() { // Put teardown code here. This method is called after the invocation of each test method in the class. super.tearDown() } func testExample() { // This is an example of a functional test case. XCTAssert(true, "Pass") } func testPerformanceExample() { // This is an example of a performance test case. self.measureBlock() { // Put the code you want to measure the time of here. } } }