From 6e94507f3777802a85f1d4a1f8a37cbbeb0a33a0 Mon Sep 17 00:00:00 2001 From: Ben Deckys Date: Thu, 9 Nov 2017 22:28:52 +1100 Subject: [PATCH] Adding Swift Sample Project --- Example-Swift/Podfile | 17 + Example-Swift/Podfile.lock | 16 + ...llectionViewLeftAlignedLayout.podspec.json | 31 + Example-Swift/Pods/Manifest.lock | 16 + .../Pods/Pods.xcodeproj/project.pbxproj | 726 ++++++++++++++++++ .../Info.plist | 26 + ...iewAlignedLayout-acknowledgements.markdown | 27 + ...onViewAlignedLayout-acknowledgements.plist | 59 ++ ...Pods-UICollectionViewAlignedLayout-dummy.m | 5 + ...ICollectionViewAlignedLayout-frameworks.sh | 99 +++ ...UICollectionViewAlignedLayout-resources.sh | 102 +++ ...s-UICollectionViewAlignedLayout-umbrella.h | 16 + ...CollectionViewAlignedLayout.debug.xcconfig | 11 + ...ds-UICollectionViewAlignedLayout.modulemap | 6 + ...llectionViewAlignedLayout.release.xcconfig | 11 + .../Info.plist | 26 + ...ignedLayoutTests-acknowledgements.markdown | 3 + ...wAlignedLayoutTests-acknowledgements.plist | 29 + ...UICollectionViewAlignedLayoutTests-dummy.m | 5 + ...ectionViewAlignedLayoutTests-frameworks.sh | 92 +++ ...lectionViewAlignedLayoutTests-resources.sh | 102 +++ ...ollectionViewAlignedLayoutTests-umbrella.h | 16 + ...ctionViewAlignedLayoutTests.debug.xcconfig | 8 + ...CollectionViewAlignedLayoutTests.modulemap | 6 + ...ionViewAlignedLayoutTests.release.xcconfig | 8 + .../Info.plist | 26 + .../UICollectionViewLeftAlignedLayout-dummy.m | 5 + ...CollectionViewLeftAlignedLayout-prefix.pch | 12 + ...CollectionViewLeftAlignedLayout-umbrella.h | 17 + ...ICollectionViewLeftAlignedLayout.modulemap | 6 + ...UICollectionViewLeftAlignedLayout.xcconfig | 11 + .../project.pbxproj | 584 ++++++++++++++ .../contents.xcworkspacedata | 7 + .../contents.xcworkspacedata | 10 + .../AppDelegate.swift | 46 ++ .../AppIcon.appiconset/Contents.json | 93 +++ .../Base.lproj/LaunchScreen.storyboard | 25 + .../Base.lproj/Main.storyboard | 62 ++ .../UICollectionViewAlignedLayout/Info.plist | 45 ++ .../ViewController.swift | 65 ++ .../Info.plist | 22 + .../UICollectionViewAlignedLayoutTests.swift | 36 + UICollectionViewLeftAlignedLayout.podspec | 2 +- .../project.pbxproj | 4 +- 44 files changed, 2539 insertions(+), 2 deletions(-) create mode 100644 Example-Swift/Podfile create mode 100644 Example-Swift/Podfile.lock create mode 100644 Example-Swift/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json create mode 100644 Example-Swift/Pods/Manifest.lock create mode 100644 Example-Swift/Pods/Pods.xcodeproj/project.pbxproj create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Info.plist create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-acknowledgements.markdown create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-acknowledgements.plist create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-dummy.m create mode 100755 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-frameworks.sh create mode 100755 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-resources.sh create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-umbrella.h create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.debug.xcconfig create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.modulemap create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.release.xcconfig create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Info.plist create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-acknowledgements.markdown create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-acknowledgements.plist create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-dummy.m create mode 100755 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-frameworks.sh create mode 100755 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-resources.sh create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-umbrella.h create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.modulemap create mode 100644 Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.release.xcconfig create mode 100644 Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/Info.plist create mode 100644 Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-dummy.m create mode 100644 Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch create mode 100644 Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-umbrella.h create mode 100644 Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap create mode 100644 Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.xcconfig create mode 100644 Example-Swift/UICollectionViewAlignedLayout.xcodeproj/project.pbxproj create mode 100644 Example-Swift/UICollectionViewAlignedLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Example-Swift/UICollectionViewAlignedLayout.xcworkspace/contents.xcworkspacedata create mode 100644 Example-Swift/UICollectionViewAlignedLayout/AppDelegate.swift create mode 100644 Example-Swift/UICollectionViewAlignedLayout/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 Example-Swift/UICollectionViewAlignedLayout/Base.lproj/LaunchScreen.storyboard create mode 100644 Example-Swift/UICollectionViewAlignedLayout/Base.lproj/Main.storyboard create mode 100644 Example-Swift/UICollectionViewAlignedLayout/Info.plist create mode 100644 Example-Swift/UICollectionViewAlignedLayout/ViewController.swift create mode 100644 Example-Swift/UICollectionViewAlignedLayoutTests/Info.plist create mode 100644 Example-Swift/UICollectionViewAlignedLayoutTests/UICollectionViewAlignedLayoutTests.swift diff --git a/Example-Swift/Podfile b/Example-Swift/Podfile new file mode 100644 index 0000000..2eb0439 --- /dev/null +++ b/Example-Swift/Podfile @@ -0,0 +1,17 @@ +# Uncomment the next line to define a global platform for your project +platform :ios, '10.0' + +target 'UICollectionViewAlignedLayout' do + # Comment the next line if you're not using Swift and don't want to use dynamic frameworks + use_frameworks! + + # Pods for UICollectionViewAlignedLayout + + pod 'UICollectionViewLeftAlignedLayout', :path=> '..' + + target 'UICollectionViewAlignedLayoutTests' do + inherit! :search_paths + # Pods for testing + end + +end diff --git a/Example-Swift/Podfile.lock b/Example-Swift/Podfile.lock new file mode 100644 index 0000000..1160480 --- /dev/null +++ b/Example-Swift/Podfile.lock @@ -0,0 +1,16 @@ +PODS: + - UICollectionViewLeftAlignedLayout (1.0.3) + +DEPENDENCIES: + - UICollectionViewLeftAlignedLayout (from `..`) + +EXTERNAL SOURCES: + UICollectionViewLeftAlignedLayout: + :path: ".." + +SPEC CHECKSUMS: + UICollectionViewLeftAlignedLayout: e90b281832b47295a0decec3ba2a72341c51064f + +PODFILE CHECKSUM: 580c60e5baecb6e42a56dde6d347c5dc23cf7ecd + +COCOAPODS: 1.2.1 diff --git a/Example-Swift/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json b/Example-Swift/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json new file mode 100644 index 0000000..3a80548 --- /dev/null +++ b/Example-Swift/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json @@ -0,0 +1,31 @@ +{ + "name": "UICollectionViewLeftAlignedLayout", + "version": "1.0.3", + "summary": "A layout for UICollectionView that aligns the cells to the left", + "description": "A `UICollectionViewLayout` implementation that aligns the cells to the left.\n\nIt uses `UICollectionViewFlowLayout` under the hood.", + "homepage": "https://github.com/mokagio/UICollectionViewLeftAlignedLayout", + "screenshots": "https://raw.githubusercontent.com/mokagio/UICollectionViewLeftAlignedLayout/master/screenshot.png", + "license": { + "type": "MIT", + "file": "LICENSE" + }, + "authors": { + "Giovanni Lodi": "giovanni.lodi42@gmail.com" + }, + "social_media_url": "http://twitter.com/mokagio", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/mokagio/UICollectionViewLeftAlignedLayout.git", + "tag": "1.0.3" + }, + "source_files": [ + "UICollectionViewLeftAlignedLayout", + "UICollectionViewLeftAlignedLayout/**/*.{swift}" + ], + "requires_arc": true, + "pod_target_xcconfig": { + "SWIFT_VERSION": "4" + } +} diff --git a/Example-Swift/Pods/Manifest.lock b/Example-Swift/Pods/Manifest.lock new file mode 100644 index 0000000..1160480 --- /dev/null +++ b/Example-Swift/Pods/Manifest.lock @@ -0,0 +1,16 @@ +PODS: + - UICollectionViewLeftAlignedLayout (1.0.3) + +DEPENDENCIES: + - UICollectionViewLeftAlignedLayout (from `..`) + +EXTERNAL SOURCES: + UICollectionViewLeftAlignedLayout: + :path: ".." + +SPEC CHECKSUMS: + UICollectionViewLeftAlignedLayout: e90b281832b47295a0decec3ba2a72341c51064f + +PODFILE CHECKSUM: 580c60e5baecb6e42a56dde6d347c5dc23cf7ecd + +COCOAPODS: 1.2.1 diff --git a/Example-Swift/Pods/Pods.xcodeproj/project.pbxproj b/Example-Swift/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 0000000..5d7b753 --- /dev/null +++ b/Example-Swift/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,726 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 48; + objects = { + +/* Begin PBXBuildFile section */ + 0E312B49ADBCBFC0FAFBE05597FD972E /* Pods-UICollectionViewAlignedLayoutTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D2B23C58CAC0EA68ABF4882D7E4D3508 /* Pods-UICollectionViewAlignedLayoutTests-dummy.m */; }; + 1AA56D286C71F2B3E3C8D5EE5DC3ADEC /* UICollectionViewAlignedLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E198A3F201AA520C337274CAAA117D6 /* UICollectionViewAlignedLayout.swift */; }; + 211E0E74760BFBB9E7302D973002D11C /* Pods-UICollectionViewAlignedLayoutTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A50A981F619FD607511820B38E5A61B7 /* Pods-UICollectionViewAlignedLayoutTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BE63D7BD12A194347BEF69E521CA6BD /* UICollectionViewLeftAlignedLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = C73ACDA216D9C22116B67C9E812C8719 /* UICollectionViewLeftAlignedLayout.m */; }; + 57D68EDE6F54114BEB5756463F571FDF /* UICollectionViewLeftAlignedLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = BFAB4C664E0DE786F376B1F890C1DC98 /* UICollectionViewLeftAlignedLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 77275F00105467AFB15ECAA5CC6736C8 /* Pods-UICollectionViewAlignedLayout-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C4B76EAFDE0D93B51A9A21319DAD40 /* Pods-UICollectionViewAlignedLayout-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8DFF7557B9E42BBF9283330930210D77 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; + AB4C41A59C70344EAEAD04C828CD7E27 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; + DA315D87CD54ABB35AB8A91D114C64F5 /* UICollectionViewLeftAlignedLayout-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FFCA903ECDA06231B605C92DE1189C4F /* UICollectionViewLeftAlignedLayout-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E43E8C8226D77EB05A3EDE2E5CFC3574 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; + F283C372AEA9537B19658C87F9652A97 /* UICollectionViewLeftAlignedLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A0BB4C4ED88C3E55AB35E7BAC1408510 /* UICollectionViewLeftAlignedLayout-dummy.m */; }; + FE63095CA9FEF9DAB7A69EA4D5383ACE /* Pods-UICollectionViewAlignedLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E1A70255F0372176D5858132317B09F0 /* Pods-UICollectionViewAlignedLayout-dummy.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + DCDA52F39A0FCB4D6A7D6852014A4450 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = B7BD2895A5EF342C21A6AB87CDF64A80; + remoteInfo = UICollectionViewLeftAlignedLayout; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0D3259C273119C8F781AF503C1B1C8BE /* Pods_UICollectionViewAlignedLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_UICollectionViewAlignedLayout.framework; path = "Pods-UICollectionViewAlignedLayout.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1C3F4CA8A2A99652D0CEEC5E8460A48A /* UICollectionViewLeftAlignedLayout-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICollectionViewLeftAlignedLayout-prefix.pch"; sourceTree = ""; }; + 28BB3C6EDBF13FFCFC393D421141DA04 /* Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig"; sourceTree = ""; }; + 2B3D67DF29ECFE5A0CAA61C3E2381E91 /* UICollectionViewLeftAlignedLayout.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UICollectionViewLeftAlignedLayout.xcconfig; sourceTree = ""; }; + 38C4B76EAFDE0D93B51A9A21319DAD40 /* Pods-UICollectionViewAlignedLayout-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-UICollectionViewAlignedLayout-umbrella.h"; sourceTree = ""; }; + 4C032FFB833EE9C208025DA0F3C420B5 /* Pods_UICollectionViewAlignedLayoutTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_UICollectionViewAlignedLayoutTests.framework; path = "Pods-UICollectionViewAlignedLayoutTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 58C3BC79247F367DA8696613A9FCB39A /* Pods-UICollectionViewAlignedLayout.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-UICollectionViewAlignedLayout.modulemap"; sourceTree = ""; }; + 5E198A3F201AA520C337274CAAA117D6 /* UICollectionViewAlignedLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = UICollectionViewAlignedLayout.swift; sourceTree = ""; }; + 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 6E83A623A31B69E7C46E92C82806AE30 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 7961491349855DDF4806CAF9ECEE3F44 /* Pods-UICollectionViewAlignedLayoutTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-UICollectionViewAlignedLayoutTests.modulemap"; sourceTree = ""; }; + 836245A5DE390DF6714E510CE4127833 /* Pods-UICollectionViewAlignedLayoutTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-UICollectionViewAlignedLayoutTests-acknowledgements.markdown"; sourceTree = ""; }; + 919D37DD2AA65AC910EFD348532FE4F1 /* Pods-UICollectionViewAlignedLayout.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewAlignedLayout.debug.xcconfig"; sourceTree = ""; }; + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 96361ED65BAB995606C9A200CE198C8D /* Pods-UICollectionViewAlignedLayout-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-UICollectionViewAlignedLayout-acknowledgements.markdown"; sourceTree = ""; }; + 974EA374164C2593857CC6817B6B1206 /* Pods-UICollectionViewAlignedLayout-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-UICollectionViewAlignedLayout-acknowledgements.plist"; sourceTree = ""; }; + 9FA4B2B19D1FF660CD7DA5BC68B3B5FE /* Pods-UICollectionViewAlignedLayout-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewAlignedLayout-frameworks.sh"; sourceTree = ""; }; + A0BB4C4ED88C3E55AB35E7BAC1408510 /* UICollectionViewLeftAlignedLayout-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UICollectionViewLeftAlignedLayout-dummy.m"; sourceTree = ""; }; + A50A981F619FD607511820B38E5A61B7 /* Pods-UICollectionViewAlignedLayoutTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-UICollectionViewAlignedLayoutTests-umbrella.h"; sourceTree = ""; }; + B0C37D714FE8CEDCF84209854F1C8AD4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + B445B338F936BB7944DFF57A13B20406 /* Pods-UICollectionViewAlignedLayoutTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewAlignedLayoutTests-frameworks.sh"; sourceTree = ""; }; + B9AE7165191A9CC8AF18BFC7F976F490 /* Pods-UICollectionViewAlignedLayoutTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewAlignedLayoutTests-resources.sh"; sourceTree = ""; }; + BFAB4C664E0DE786F376B1F890C1DC98 /* UICollectionViewLeftAlignedLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UICollectionViewLeftAlignedLayout.h; sourceTree = ""; }; + C35890E4D4F5699788DD83677757B8C7 /* Pods-UICollectionViewAlignedLayout.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewAlignedLayout.release.xcconfig"; sourceTree = ""; }; + C73ACDA216D9C22116B67C9E812C8719 /* UICollectionViewLeftAlignedLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UICollectionViewLeftAlignedLayout.m; sourceTree = ""; }; + D2B23C58CAC0EA68ABF4882D7E4D3508 /* Pods-UICollectionViewAlignedLayoutTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-UICollectionViewAlignedLayoutTests-dummy.m"; sourceTree = ""; }; + E13344EF6EACA3E8B3D8BDE2CDAD6DB2 /* UICollectionViewLeftAlignedLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = UICollectionViewLeftAlignedLayout.framework; path = UICollectionViewLeftAlignedLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E1A70255F0372176D5858132317B09F0 /* Pods-UICollectionViewAlignedLayout-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-UICollectionViewAlignedLayout-dummy.m"; sourceTree = ""; }; + E45302EE436E9939E39C74F23C34F4AD /* Pods-UICollectionViewAlignedLayoutTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewAlignedLayoutTests.release.xcconfig"; sourceTree = ""; }; + EC2019A750A8854C34E643F4C3CAB0E9 /* Pods-UICollectionViewAlignedLayout-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewAlignedLayout-resources.sh"; sourceTree = ""; }; + EF44570004627F7528A0F3AB19B87E2C /* Pods-UICollectionViewAlignedLayoutTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-UICollectionViewAlignedLayoutTests-acknowledgements.plist"; sourceTree = ""; }; + F414A567F41B7F47694AAC2EF7EE1EDD /* UICollectionViewLeftAlignedLayout.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = UICollectionViewLeftAlignedLayout.modulemap; sourceTree = ""; }; + FFCA903ECDA06231B605C92DE1189C4F /* UICollectionViewLeftAlignedLayout-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICollectionViewLeftAlignedLayout-umbrella.h"; sourceTree = ""; }; + FFE0C5A2AF6FB5BE007E1A80E9E43837 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 122E85811FAF2A691CDC36040B69B239 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E43E8C8226D77EB05A3EDE2E5CFC3574 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 66E4CA00F30A7B8B98630EB58E07460B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8DFF7557B9E42BBF9283330930210D77 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 723DCD919B6977BEB63FAD23D1B4C90C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + AB4C41A59C70344EAEAD04C828CD7E27 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 191712DD74DFA97E06D954109ED4B1FA /* Support Files */ = { + isa = PBXGroup; + children = ( + 6E83A623A31B69E7C46E92C82806AE30 /* Info.plist */, + F414A567F41B7F47694AAC2EF7EE1EDD /* UICollectionViewLeftAlignedLayout.modulemap */, + 2B3D67DF29ECFE5A0CAA61C3E2381E91 /* UICollectionViewLeftAlignedLayout.xcconfig */, + A0BB4C4ED88C3E55AB35E7BAC1408510 /* UICollectionViewLeftAlignedLayout-dummy.m */, + 1C3F4CA8A2A99652D0CEEC5E8460A48A /* UICollectionViewLeftAlignedLayout-prefix.pch */, + FFCA903ECDA06231B605C92DE1189C4F /* UICollectionViewLeftAlignedLayout-umbrella.h */, + ); + name = "Support Files"; + path = "Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout"; + sourceTree = ""; + }; + 36759C2FAF5695748BB20547FFBF5C07 /* Pods-UICollectionViewAlignedLayout */ = { + isa = PBXGroup; + children = ( + B0C37D714FE8CEDCF84209854F1C8AD4 /* Info.plist */, + 58C3BC79247F367DA8696613A9FCB39A /* Pods-UICollectionViewAlignedLayout.modulemap */, + 96361ED65BAB995606C9A200CE198C8D /* Pods-UICollectionViewAlignedLayout-acknowledgements.markdown */, + 974EA374164C2593857CC6817B6B1206 /* Pods-UICollectionViewAlignedLayout-acknowledgements.plist */, + E1A70255F0372176D5858132317B09F0 /* Pods-UICollectionViewAlignedLayout-dummy.m */, + 9FA4B2B19D1FF660CD7DA5BC68B3B5FE /* Pods-UICollectionViewAlignedLayout-frameworks.sh */, + EC2019A750A8854C34E643F4C3CAB0E9 /* Pods-UICollectionViewAlignedLayout-resources.sh */, + 38C4B76EAFDE0D93B51A9A21319DAD40 /* Pods-UICollectionViewAlignedLayout-umbrella.h */, + 919D37DD2AA65AC910EFD348532FE4F1 /* Pods-UICollectionViewAlignedLayout.debug.xcconfig */, + C35890E4D4F5699788DD83677757B8C7 /* Pods-UICollectionViewAlignedLayout.release.xcconfig */, + ); + name = "Pods-UICollectionViewAlignedLayout"; + path = "Target Support Files/Pods-UICollectionViewAlignedLayout"; + sourceTree = ""; + }; + 3BF1964FA4274BA9A8F610BFD323915A /* UICollectionViewLeftAlignedLayout */ = { + isa = PBXGroup; + children = ( + 5E198A3F201AA520C337274CAAA117D6 /* UICollectionViewAlignedLayout.swift */, + BFAB4C664E0DE786F376B1F890C1DC98 /* UICollectionViewLeftAlignedLayout.h */, + C73ACDA216D9C22116B67C9E812C8719 /* UICollectionViewLeftAlignedLayout.m */, + ); + name = UICollectionViewLeftAlignedLayout; + path = UICollectionViewLeftAlignedLayout; + sourceTree = ""; + }; + 6EC4CF03F9A0AD964FEBB6B42AC75C6D /* UICollectionViewLeftAlignedLayout */ = { + isa = PBXGroup; + children = ( + 191712DD74DFA97E06D954109ED4B1FA /* Support Files */, + 3BF1964FA4274BA9A8F610BFD323915A /* UICollectionViewLeftAlignedLayout */, + ); + name = UICollectionViewLeftAlignedLayout; + path = ../..; + sourceTree = ""; + }; + 7DB346D0F39D3F0E887471402A8071AB = { + isa = PBXGroup; + children = ( + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, + 9F1BFEC52C9B556CDBB4961E88818997 /* Development Pods */, + BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, + DCC9EEF86F7A5F8EA896C328667DEC7F /* Products */, + CD3B5E6D693086B25417F5B7A5A40533 /* Targets Support Files */, + ); + sourceTree = ""; + }; + 817BE5DB2CC0465716ADC93DDDDB6CAA /* Pods-UICollectionViewAlignedLayoutTests */ = { + isa = PBXGroup; + children = ( + FFE0C5A2AF6FB5BE007E1A80E9E43837 /* Info.plist */, + 7961491349855DDF4806CAF9ECEE3F44 /* Pods-UICollectionViewAlignedLayoutTests.modulemap */, + 836245A5DE390DF6714E510CE4127833 /* Pods-UICollectionViewAlignedLayoutTests-acknowledgements.markdown */, + EF44570004627F7528A0F3AB19B87E2C /* Pods-UICollectionViewAlignedLayoutTests-acknowledgements.plist */, + D2B23C58CAC0EA68ABF4882D7E4D3508 /* Pods-UICollectionViewAlignedLayoutTests-dummy.m */, + B445B338F936BB7944DFF57A13B20406 /* Pods-UICollectionViewAlignedLayoutTests-frameworks.sh */, + B9AE7165191A9CC8AF18BFC7F976F490 /* Pods-UICollectionViewAlignedLayoutTests-resources.sh */, + A50A981F619FD607511820B38E5A61B7 /* Pods-UICollectionViewAlignedLayoutTests-umbrella.h */, + 28BB3C6EDBF13FFCFC393D421141DA04 /* Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig */, + E45302EE436E9939E39C74F23C34F4AD /* Pods-UICollectionViewAlignedLayoutTests.release.xcconfig */, + ); + name = "Pods-UICollectionViewAlignedLayoutTests"; + path = "Target Support Files/Pods-UICollectionViewAlignedLayoutTests"; + sourceTree = ""; + }; + 9F1BFEC52C9B556CDBB4961E88818997 /* Development Pods */ = { + isa = PBXGroup; + children = ( + 6EC4CF03F9A0AD964FEBB6B42AC75C6D /* UICollectionViewLeftAlignedLayout */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { + isa = PBXGroup; + children = ( + D35AF013A5F0BAD4F32504907A52519E /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + CD3B5E6D693086B25417F5B7A5A40533 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + 36759C2FAF5695748BB20547FFBF5C07 /* Pods-UICollectionViewAlignedLayout */, + 817BE5DB2CC0465716ADC93DDDDB6CAA /* Pods-UICollectionViewAlignedLayoutTests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + D35AF013A5F0BAD4F32504907A52519E /* iOS */ = { + isa = PBXGroup; + children = ( + 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; + DCC9EEF86F7A5F8EA896C328667DEC7F /* Products */ = { + isa = PBXGroup; + children = ( + 0D3259C273119C8F781AF503C1B1C8BE /* Pods_UICollectionViewAlignedLayout.framework */, + 4C032FFB833EE9C208025DA0F3C420B5 /* Pods_UICollectionViewAlignedLayoutTests.framework */, + E13344EF6EACA3E8B3D8BDE2CDAD6DB2 /* UICollectionViewLeftAlignedLayout.framework */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 94B5F2CB03EB6F53EC71A083259A685D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 77275F00105467AFB15ECAA5CC6736C8 /* Pods-UICollectionViewAlignedLayout-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 96475FA2AEF7BC1113C92A27A64DB07F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 211E0E74760BFBB9E7302D973002D11C /* Pods-UICollectionViewAlignedLayoutTests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E62D0482DC51FB873D8647F966C21264 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + DA315D87CD54ABB35AB8A91D114C64F5 /* UICollectionViewLeftAlignedLayout-umbrella.h in Headers */, + 57D68EDE6F54114BEB5756463F571FDF /* UICollectionViewLeftAlignedLayout.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 01D46E5026729BA66AEB904D4FBD360B /* Pods-UICollectionViewAlignedLayout */ = { + isa = PBXNativeTarget; + buildConfigurationList = BDD6CFF9D0D4D94D901FECDCA23D00C2 /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewAlignedLayout" */; + buildPhases = ( + F2FC2D24C72D98F89356F6F01B6B4BBC /* Sources */, + 66E4CA00F30A7B8B98630EB58E07460B /* Frameworks */, + 94B5F2CB03EB6F53EC71A083259A685D /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 2CBD0F5D85B02FACEFF39924273EF6A3 /* PBXTargetDependency */, + ); + name = "Pods-UICollectionViewAlignedLayout"; + productName = "Pods-UICollectionViewAlignedLayout"; + productReference = 0D3259C273119C8F781AF503C1B1C8BE /* Pods_UICollectionViewAlignedLayout.framework */; + productType = "com.apple.product-type.framework"; + }; + B7BD2895A5EF342C21A6AB87CDF64A80 /* UICollectionViewLeftAlignedLayout */ = { + isa = PBXNativeTarget; + buildConfigurationList = C16C99A5E3855CC267F47C601817E612 /* Build configuration list for PBXNativeTarget "UICollectionViewLeftAlignedLayout" */; + buildPhases = ( + 13D198431A3BED8444C297A7EE619B9F /* Sources */, + 723DCD919B6977BEB63FAD23D1B4C90C /* Frameworks */, + E62D0482DC51FB873D8647F966C21264 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = UICollectionViewLeftAlignedLayout; + productName = UICollectionViewLeftAlignedLayout; + productReference = E13344EF6EACA3E8B3D8BDE2CDAD6DB2 /* UICollectionViewLeftAlignedLayout.framework */; + productType = "com.apple.product-type.framework"; + }; + E1951848C0A1CF29014E6C5DD9BB7F65 /* Pods-UICollectionViewAlignedLayoutTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 41EF8EFD43735A84BC18A0E19CC27DA8 /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewAlignedLayoutTests" */; + buildPhases = ( + 08351067227022C056E89850DCC41D99 /* Sources */, + 122E85811FAF2A691CDC36040B69B239 /* Frameworks */, + 96475FA2AEF7BC1113C92A27A64DB07F /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-UICollectionViewAlignedLayoutTests"; + productName = "Pods-UICollectionViewAlignedLayoutTests"; + productReference = 4C032FFB833EE9C208025DA0F3C420B5 /* Pods_UICollectionViewAlignedLayoutTests.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0830; + LastUpgradeCheck = 0700; + }; + buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 7DB346D0F39D3F0E887471402A8071AB; + productRefGroup = DCC9EEF86F7A5F8EA896C328667DEC7F /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 01D46E5026729BA66AEB904D4FBD360B /* Pods-UICollectionViewAlignedLayout */, + E1951848C0A1CF29014E6C5DD9BB7F65 /* Pods-UICollectionViewAlignedLayoutTests */, + B7BD2895A5EF342C21A6AB87CDF64A80 /* UICollectionViewLeftAlignedLayout */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 08351067227022C056E89850DCC41D99 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0E312B49ADBCBFC0FAFBE05597FD972E /* Pods-UICollectionViewAlignedLayoutTests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 13D198431A3BED8444C297A7EE619B9F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1AA56D286C71F2B3E3C8D5EE5DC3ADEC /* UICollectionViewAlignedLayout.swift in Sources */, + F283C372AEA9537B19658C87F9652A97 /* UICollectionViewLeftAlignedLayout-dummy.m in Sources */, + 3BE63D7BD12A194347BEF69E521CA6BD /* UICollectionViewLeftAlignedLayout.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F2FC2D24C72D98F89356F6F01B6B4BBC /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FE63095CA9FEF9DAB7A69EA4D5383ACE /* Pods-UICollectionViewAlignedLayout-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 2CBD0F5D85B02FACEFF39924273EF6A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UICollectionViewLeftAlignedLayout; + target = B7BD2895A5EF342C21A6AB87CDF64A80 /* UICollectionViewLeftAlignedLayout */; + targetProxy = DCDA52F39A0FCB4D6A7D6852014A4450 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 0CAD02B0B6E325D895EF1D0996A6935B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2B3D67DF29ECFE5A0CAA61C3E2381E91 /* UICollectionViewLeftAlignedLayout.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/UICollectionViewLeftAlignedLayout/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = UICollectionViewLeftAlignedLayout; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 2FF0A3A8F0B72C40C67EBF3271ED07D8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 28BB3C6EDBF13FFCFC393D421141DA04 /* Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_UICollectionViewAlignedLayoutTests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 643C76AA582046977B7877822ED7A258 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; + 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_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = NO; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "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 = 10.0; + ONLY_ACTIVE_ARCH = YES; + PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + 69DB870BC81BEC15578B80B31277889C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E45302EE436E9939E39C74F23C34F4AD /* Pods-UICollectionViewAlignedLayoutTests.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_UICollectionViewAlignedLayoutTests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 8B8F1C0C0D8536AFADFB7FAED1C2AEA0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2B3D67DF29ECFE5A0CAA61C3E2381E91 /* UICollectionViewLeftAlignedLayout.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/UICollectionViewLeftAlignedLayout/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = UICollectionViewLeftAlignedLayout; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + B9B90424D47945AF86F91DAAFCF84D83 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 919D37DD2AA65AC910EFD348532FE4F1 /* Pods-UICollectionViewAlignedLayout.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewAlignedLayout/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_UICollectionViewAlignedLayout; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + C03B8870130C98D1B02B59D003687524 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; + 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_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = YES; + ENABLE_NS_ASSERTIONS = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + 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 = 10.0; + PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + DC0A0638F241D48C5A662A4058CFB675 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C35890E4D4F5699788DD83677757B8C7 /* Pods-UICollectionViewAlignedLayout.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewAlignedLayout/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_UICollectionViewAlignedLayout; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 643C76AA582046977B7877822ED7A258 /* Debug */, + C03B8870130C98D1B02B59D003687524 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 41EF8EFD43735A84BC18A0E19CC27DA8 /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewAlignedLayoutTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2FF0A3A8F0B72C40C67EBF3271ED07D8 /* Debug */, + 69DB870BC81BEC15578B80B31277889C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + BDD6CFF9D0D4D94D901FECDCA23D00C2 /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewAlignedLayout" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B9B90424D47945AF86F91DAAFCF84D83 /* Debug */, + DC0A0638F241D48C5A662A4058CFB675 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C16C99A5E3855CC267F47C601817E612 /* Build configuration list for PBXNativeTarget "UICollectionViewLeftAlignedLayout" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 8B8F1C0C0D8536AFADFB7FAED1C2AEA0 /* Debug */, + 0CAD02B0B6E325D895EF1D0996A6935B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; +} diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Info.plist b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-acknowledgements.markdown b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-acknowledgements.markdown new file mode 100644 index 0000000..abcc3b1 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-acknowledgements.markdown @@ -0,0 +1,27 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## UICollectionViewLeftAlignedLayout + +The MIT License (MIT) + +Copyright (c) 2014 Giovanni Lodi + +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 - https://cocoapods.org diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-acknowledgements.plist b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-acknowledgements.plist new file mode 100644 index 0000000..218b5de --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-acknowledgements.plist @@ -0,0 +1,59 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + The MIT License (MIT) + +Copyright (c) 2014 Giovanni Lodi + +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. + + License + MIT + Title + UICollectionViewLeftAlignedLayout + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-dummy.m b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-dummy.m new file mode 100644 index 0000000..f1d01b4 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_UICollectionViewAlignedLayout : NSObject +@end +@implementation PodsDummy_Pods_UICollectionViewAlignedLayout +@end diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-frameworks.sh b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-frameworks.sh new file mode 100755 index 0000000..f91f0a4 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-frameworks.sh @@ -0,0 +1,99 @@ +#!/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" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_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}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # 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. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | 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 + fi +} + +# 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}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current file + archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" + stripped="" + for arch in $archs; do + if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi +} + + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework" +fi +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-resources.sh b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-resources.sh new file mode 100755 index 0000000..aed060f --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-resources.sh @@ -0,0 +1,102 @@ +#!/bin/sh +set -e + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +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" + ;; + 3) + TARGET_DEVICE_ARGS="--target-device tv" + ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; 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 + # 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 != "${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 "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-umbrella.h b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-umbrella.h new file mode 100644 index 0000000..4e60225 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_UICollectionViewAlignedLayoutVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_UICollectionViewAlignedLayoutVersionString[]; + diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.debug.xcconfig b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.debug.xcconfig new file mode 100644 index 0000000..eeef02d --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.debug.xcconfig @@ -0,0 +1,11 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/UICollectionViewLeftAlignedLayout" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "UICollectionViewLeftAlignedLayout" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.modulemap b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.modulemap new file mode 100644 index 0000000..4f5ea40 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.modulemap @@ -0,0 +1,6 @@ +framework module Pods_UICollectionViewAlignedLayout { + umbrella header "Pods-UICollectionViewAlignedLayout-umbrella.h" + + export * + module * { export * } +} diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.release.xcconfig b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.release.xcconfig new file mode 100644 index 0000000..eeef02d --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.release.xcconfig @@ -0,0 +1,11 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/UICollectionViewLeftAlignedLayout" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "UICollectionViewLeftAlignedLayout" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Info.plist b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-acknowledgements.markdown b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-acknowledgements.markdown new file mode 100644 index 0000000..102af75 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-acknowledgements.plist b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-acknowledgements.plist new file mode 100644 index 0000000..7acbad1 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-dummy.m b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-dummy.m new file mode 100644 index 0000000..473786b --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_UICollectionViewAlignedLayoutTests : NSObject +@end +@implementation PodsDummy_Pods_UICollectionViewAlignedLayoutTests +@end diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-frameworks.sh b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-frameworks.sh new file mode 100755 index 0000000..0f29f13 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-frameworks.sh @@ -0,0 +1,92 @@ +#!/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" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_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}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # 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. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | 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 + fi +} + +# 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}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current file + archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" + stripped="" + for arch in $archs; do + if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi +} + +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-resources.sh b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-resources.sh new file mode 100755 index 0000000..aed060f --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-resources.sh @@ -0,0 +1,102 @@ +#!/bin/sh +set -e + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +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" + ;; + 3) + TARGET_DEVICE_ARGS="--target-device tv" + ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; 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 + # 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 != "${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 "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-umbrella.h b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-umbrella.h new file mode 100644 index 0000000..dca3080 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_UICollectionViewAlignedLayoutTestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_UICollectionViewAlignedLayoutTestsVersionString[]; + diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig new file mode 100644 index 0000000..c5cd09c --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig @@ -0,0 +1,8 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/UICollectionViewLeftAlignedLayout" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework/Headers" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.modulemap b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.modulemap new file mode 100644 index 0000000..232f028 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_UICollectionViewAlignedLayoutTests { + umbrella header "Pods-UICollectionViewAlignedLayoutTests-umbrella.h" + + export * + module * { export * } +} diff --git a/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.release.xcconfig b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.release.xcconfig new file mode 100644 index 0000000..c5cd09c --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.release.xcconfig @@ -0,0 +1,8 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/UICollectionViewLeftAlignedLayout" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework/Headers" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/Info.plist b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/Info.plist new file mode 100644 index 0000000..10ad18b --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.3 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-dummy.m b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-dummy.m new file mode 100644 index 0000000..193d014 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_UICollectionViewLeftAlignedLayout : NSObject +@end +@implementation PodsDummy_UICollectionViewLeftAlignedLayout +@end diff --git a/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-umbrella.h b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-umbrella.h new file mode 100644 index 0000000..617d4be --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-umbrella.h @@ -0,0 +1,17 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "UICollectionViewLeftAlignedLayout.h" + +FOUNDATION_EXPORT double UICollectionViewLeftAlignedLayoutVersionNumber; +FOUNDATION_EXPORT const unsigned char UICollectionViewLeftAlignedLayoutVersionString[]; + diff --git a/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap new file mode 100644 index 0000000..b6bc24f --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap @@ -0,0 +1,6 @@ +framework module UICollectionViewLeftAlignedLayout { + umbrella header "UICollectionViewLeftAlignedLayout-umbrella.h" + + export * + module * { export * } +} diff --git a/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.xcconfig b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.xcconfig new file mode 100644 index 0000000..00ed483 --- /dev/null +++ b/Example-Swift/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.xcconfig @@ -0,0 +1,11 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/UICollectionViewLeftAlignedLayout +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +SWIFT_VERSION = 4 diff --git a/Example-Swift/UICollectionViewAlignedLayout.xcodeproj/project.pbxproj b/Example-Swift/UICollectionViewAlignedLayout.xcodeproj/project.pbxproj new file mode 100644 index 0000000..91576b9 --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayout.xcodeproj/project.pbxproj @@ -0,0 +1,584 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 48; + objects = { + +/* Begin PBXBuildFile section */ + 06EE210B1FB4699F003A0809 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06EE210A1FB4699F003A0809 /* AppDelegate.swift */; }; + 06EE210D1FB4699F003A0809 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06EE210C1FB4699F003A0809 /* ViewController.swift */; }; + 06EE21101FB4699F003A0809 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 06EE210E1FB4699F003A0809 /* Main.storyboard */; }; + 06EE21121FB4699F003A0809 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 06EE21111FB4699F003A0809 /* Assets.xcassets */; }; + 06EE21151FB4699F003A0809 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 06EE21131FB4699F003A0809 /* LaunchScreen.storyboard */; }; + 06EE21201FB4699F003A0809 /* UICollectionViewAlignedLayoutTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06EE211F1FB4699F003A0809 /* UICollectionViewAlignedLayoutTests.swift */; }; + 0C4D84F3931F4A7545BDB032 /* Pods_UICollectionViewAlignedLayoutTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21D0EEA2652D891659E8C6CB /* Pods_UICollectionViewAlignedLayoutTests.framework */; }; + 492A8A5F5E2435A79882317B /* Pods_UICollectionViewAlignedLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EEEBA4C3A2FE6FD2888C0F1B /* Pods_UICollectionViewAlignedLayout.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 06EE211C1FB4699F003A0809 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 06EE20FF1FB4699F003A0809 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 06EE21061FB4699F003A0809; + remoteInfo = UICollectionViewAlignedLayout; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 06EE21071FB4699F003A0809 /* UICollectionViewAlignedLayout.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UICollectionViewAlignedLayout.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 06EE210A1FB4699F003A0809 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 06EE210C1FB4699F003A0809 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 06EE210F1FB4699F003A0809 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 06EE21111FB4699F003A0809 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 06EE21141FB4699F003A0809 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 06EE21161FB4699F003A0809 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 06EE211B1FB4699F003A0809 /* UICollectionViewAlignedLayoutTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = UICollectionViewAlignedLayoutTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 06EE211F1FB4699F003A0809 /* UICollectionViewAlignedLayoutTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UICollectionViewAlignedLayoutTests.swift; sourceTree = ""; }; + 06EE21211FB4699F003A0809 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 0FFCDD22F85E12DB85F9FD6D /* Pods-UICollectionViewAlignedLayout.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UICollectionViewAlignedLayout.debug.xcconfig"; path = "Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.debug.xcconfig"; sourceTree = ""; }; + 21D0EEA2652D891659E8C6CB /* Pods_UICollectionViewAlignedLayoutTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_UICollectionViewAlignedLayoutTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 6C8FD6C5D86D51F112705BC5 /* Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig"; sourceTree = ""; }; + 8A10FCF6449F32FF436A6B71 /* Pods-UICollectionViewAlignedLayout.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UICollectionViewAlignedLayout.release.xcconfig"; path = "Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout.release.xcconfig"; sourceTree = ""; }; + C4D5BE93E8FE2FEFE36D1F87 /* Pods-UICollectionViewAlignedLayoutTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UICollectionViewAlignedLayoutTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests.release.xcconfig"; sourceTree = ""; }; + EEEBA4C3A2FE6FD2888C0F1B /* Pods_UICollectionViewAlignedLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_UICollectionViewAlignedLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 06EE21041FB4699F003A0809 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 492A8A5F5E2435A79882317B /* Pods_UICollectionViewAlignedLayout.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 06EE21181FB4699F003A0809 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 0C4D84F3931F4A7545BDB032 /* Pods_UICollectionViewAlignedLayoutTests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 06EE20FE1FB4699F003A0809 = { + isa = PBXGroup; + children = ( + 06EE21091FB4699F003A0809 /* UICollectionViewAlignedLayout */, + 06EE211E1FB4699F003A0809 /* UICollectionViewAlignedLayoutTests */, + 06EE21081FB4699F003A0809 /* Products */, + 4432CD130271E88D666A7B42 /* Pods */, + F22356E11688465721581B23 /* Frameworks */, + ); + sourceTree = ""; + }; + 06EE21081FB4699F003A0809 /* Products */ = { + isa = PBXGroup; + children = ( + 06EE21071FB4699F003A0809 /* UICollectionViewAlignedLayout.app */, + 06EE211B1FB4699F003A0809 /* UICollectionViewAlignedLayoutTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 06EE21091FB4699F003A0809 /* UICollectionViewAlignedLayout */ = { + isa = PBXGroup; + children = ( + 06EE210A1FB4699F003A0809 /* AppDelegate.swift */, + 06EE210C1FB4699F003A0809 /* ViewController.swift */, + 06EE210E1FB4699F003A0809 /* Main.storyboard */, + 06EE21111FB4699F003A0809 /* Assets.xcassets */, + 06EE21131FB4699F003A0809 /* LaunchScreen.storyboard */, + 06EE21161FB4699F003A0809 /* Info.plist */, + ); + path = UICollectionViewAlignedLayout; + sourceTree = ""; + }; + 06EE211E1FB4699F003A0809 /* UICollectionViewAlignedLayoutTests */ = { + isa = PBXGroup; + children = ( + 06EE211F1FB4699F003A0809 /* UICollectionViewAlignedLayoutTests.swift */, + 06EE21211FB4699F003A0809 /* Info.plist */, + ); + path = UICollectionViewAlignedLayoutTests; + sourceTree = ""; + }; + 4432CD130271E88D666A7B42 /* Pods */ = { + isa = PBXGroup; + children = ( + 0FFCDD22F85E12DB85F9FD6D /* Pods-UICollectionViewAlignedLayout.debug.xcconfig */, + 8A10FCF6449F32FF436A6B71 /* Pods-UICollectionViewAlignedLayout.release.xcconfig */, + 6C8FD6C5D86D51F112705BC5 /* Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig */, + C4D5BE93E8FE2FEFE36D1F87 /* Pods-UICollectionViewAlignedLayoutTests.release.xcconfig */, + ); + name = Pods; + sourceTree = ""; + }; + F22356E11688465721581B23 /* Frameworks */ = { + isa = PBXGroup; + children = ( + EEEBA4C3A2FE6FD2888C0F1B /* Pods_UICollectionViewAlignedLayout.framework */, + 21D0EEA2652D891659E8C6CB /* Pods_UICollectionViewAlignedLayoutTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 06EE21061FB4699F003A0809 /* UICollectionViewAlignedLayout */ = { + isa = PBXNativeTarget; + buildConfigurationList = 06EE21241FB4699F003A0809 /* Build configuration list for PBXNativeTarget "UICollectionViewAlignedLayout" */; + buildPhases = ( + A00ABB22D4D6E62B96033B3F /* [CP] Check Pods Manifest.lock */, + 06EE21031FB4699F003A0809 /* Sources */, + 06EE21041FB4699F003A0809 /* Frameworks */, + 06EE21051FB4699F003A0809 /* Resources */, + 0DAFDA5949A76EDFD084E7EC /* [CP] Embed Pods Frameworks */, + B76DB2C0D4EFD0B1EAA5DD9B /* [CP] Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = UICollectionViewAlignedLayout; + productName = UICollectionViewAlignedLayout; + productReference = 06EE21071FB4699F003A0809 /* UICollectionViewAlignedLayout.app */; + productType = "com.apple.product-type.application"; + }; + 06EE211A1FB4699F003A0809 /* UICollectionViewAlignedLayoutTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 06EE21271FB4699F003A0809 /* Build configuration list for PBXNativeTarget "UICollectionViewAlignedLayoutTests" */; + buildPhases = ( + 84C8D00FE71E23AE63814B54 /* [CP] Check Pods Manifest.lock */, + 06EE21171FB4699F003A0809 /* Sources */, + 06EE21181FB4699F003A0809 /* Frameworks */, + 06EE21191FB4699F003A0809 /* Resources */, + 0E6A9571868D6E16E09025F0 /* [CP] Embed Pods Frameworks */, + 5179D0A70889F6AC879DD15E /* [CP] Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + 06EE211D1FB4699F003A0809 /* PBXTargetDependency */, + ); + name = UICollectionViewAlignedLayoutTests; + productName = UICollectionViewAlignedLayoutTests; + productReference = 06EE211B1FB4699F003A0809 /* UICollectionViewAlignedLayoutTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 06EE20FF1FB4699F003A0809 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0900; + LastUpgradeCheck = 0900; + ORGANIZATIONNAME = MIMIMI; + TargetAttributes = { + 06EE21061FB4699F003A0809 = { + CreatedOnToolsVersion = 9.0; + ProvisioningStyle = Automatic; + }; + 06EE211A1FB4699F003A0809 = { + CreatedOnToolsVersion = 9.0; + ProvisioningStyle = Automatic; + TestTargetID = 06EE21061FB4699F003A0809; + }; + }; + }; + buildConfigurationList = 06EE21021FB4699F003A0809 /* Build configuration list for PBXProject "UICollectionViewAlignedLayout" */; + compatibilityVersion = "Xcode 8.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 06EE20FE1FB4699F003A0809; + productRefGroup = 06EE21081FB4699F003A0809 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 06EE21061FB4699F003A0809 /* UICollectionViewAlignedLayout */, + 06EE211A1FB4699F003A0809 /* UICollectionViewAlignedLayoutTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 06EE21051FB4699F003A0809 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 06EE21151FB4699F003A0809 /* LaunchScreen.storyboard in Resources */, + 06EE21121FB4699F003A0809 /* Assets.xcassets in Resources */, + 06EE21101FB4699F003A0809 /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 06EE21191FB4699F003A0809 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 0DAFDA5949A76EDFD084E7EC /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 0E6A9571868D6E16E09025F0 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 5179D0A70889F6AC879DD15E /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-UICollectionViewAlignedLayoutTests/Pods-UICollectionViewAlignedLayoutTests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 84C8D00FE71E23AE63814B54 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + A00ABB22D4D6E62B96033B3F /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + B76DB2C0D4EFD0B1EAA5DD9B /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-UICollectionViewAlignedLayout/Pods-UICollectionViewAlignedLayout-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 06EE21031FB4699F003A0809 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 06EE210D1FB4699F003A0809 /* ViewController.swift in Sources */, + 06EE210B1FB4699F003A0809 /* AppDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 06EE21171FB4699F003A0809 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 06EE21201FB4699F003A0809 /* UICollectionViewAlignedLayoutTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 06EE211D1FB4699F003A0809 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 06EE21061FB4699F003A0809 /* UICollectionViewAlignedLayout */; + targetProxy = 06EE211C1FB4699F003A0809 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 06EE210E1FB4699F003A0809 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 06EE210F1FB4699F003A0809 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 06EE21131FB4699F003A0809 /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 06EE21141FB4699F003A0809 /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 06EE21221FB4699F003A0809 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + 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 = 11.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 06EE21231FB4699F003A0809 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = "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 = gnu11; + 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 = 11.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 06EE21251FB4699F003A0809 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0FFCDD22F85E12DB85F9FD6D /* Pods-UICollectionViewAlignedLayout.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = EPUH4VBJNY; + INFOPLIST_FILE = UICollectionViewAlignedLayout/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.cocotutch.UICollectionViewAlignedLayout; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 06EE21261FB4699F003A0809 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8A10FCF6449F32FF436A6B71 /* Pods-UICollectionViewAlignedLayout.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = EPUH4VBJNY; + INFOPLIST_FILE = UICollectionViewAlignedLayout/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.cocotutch.UICollectionViewAlignedLayout; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 06EE21281FB4699F003A0809 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6C8FD6C5D86D51F112705BC5 /* Pods-UICollectionViewAlignedLayoutTests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = EPUH4VBJNY; + INFOPLIST_FILE = UICollectionViewAlignedLayoutTests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.cocotutch.UICollectionViewAlignedLayoutTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/UICollectionViewAlignedLayout.app/UICollectionViewAlignedLayout"; + }; + name = Debug; + }; + 06EE21291FB4699F003A0809 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C4D5BE93E8FE2FEFE36D1F87 /* Pods-UICollectionViewAlignedLayoutTests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = EPUH4VBJNY; + INFOPLIST_FILE = UICollectionViewAlignedLayoutTests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.cocotutch.UICollectionViewAlignedLayoutTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/UICollectionViewAlignedLayout.app/UICollectionViewAlignedLayout"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 06EE21021FB4699F003A0809 /* Build configuration list for PBXProject "UICollectionViewAlignedLayout" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 06EE21221FB4699F003A0809 /* Debug */, + 06EE21231FB4699F003A0809 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 06EE21241FB4699F003A0809 /* Build configuration list for PBXNativeTarget "UICollectionViewAlignedLayout" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 06EE21251FB4699F003A0809 /* Debug */, + 06EE21261FB4699F003A0809 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 06EE21271FB4699F003A0809 /* Build configuration list for PBXNativeTarget "UICollectionViewAlignedLayoutTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 06EE21281FB4699F003A0809 /* Debug */, + 06EE21291FB4699F003A0809 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 06EE20FF1FB4699F003A0809 /* Project object */; +} diff --git a/Example-Swift/UICollectionViewAlignedLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Example-Swift/UICollectionViewAlignedLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..8793bdc --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Example-Swift/UICollectionViewAlignedLayout.xcworkspace/contents.xcworkspacedata b/Example-Swift/UICollectionViewAlignedLayout.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..aac822b --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayout.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/Example-Swift/UICollectionViewAlignedLayout/AppDelegate.swift b/Example-Swift/UICollectionViewAlignedLayout/AppDelegate.swift new file mode 100644 index 0000000..c968a4c --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayout/AppDelegate.swift @@ -0,0 +1,46 @@ +// +// AppDelegate.swift +// UICollectionViewAlignedLayout +// +// Created by Ben Deckys on 9/11/17. +// Copyright © 2017 MIMIMI. All rights reserved. +// + +import UIKit + +@UIApplicationMain +class AppDelegate: UIResponder, UIApplicationDelegate { + + var window: UIWindow? + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> 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 invalidate graphics rendering callbacks. 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 active 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:. + } + + +} + diff --git a/Example-Swift/UICollectionViewAlignedLayout/Assets.xcassets/AppIcon.appiconset/Contents.json b/Example-Swift/UICollectionViewAlignedLayout/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..1d060ed --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayout/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,93 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "3x" + }, + { + "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" + }, + { + "idiom" : "ipad", + "size" : "20x20", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "29x29", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "40x40", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "76x76", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "76x76", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "83.5x83.5", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/Example-Swift/UICollectionViewAlignedLayout/Base.lproj/LaunchScreen.storyboard b/Example-Swift/UICollectionViewAlignedLayout/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f83f6fd --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayout/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example-Swift/UICollectionViewAlignedLayout/Base.lproj/Main.storyboard b/Example-Swift/UICollectionViewAlignedLayout/Base.lproj/Main.storyboard new file mode 100644 index 0000000..1a263c4 --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayout/Base.lproj/Main.storyboard @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example-Swift/UICollectionViewAlignedLayout/Info.plist b/Example-Swift/UICollectionViewAlignedLayout/Info.plist new file mode 100644 index 0000000..16be3b6 --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayout/Info.plist @@ -0,0 +1,45 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/Example-Swift/UICollectionViewAlignedLayout/ViewController.swift b/Example-Swift/UICollectionViewAlignedLayout/ViewController.swift new file mode 100644 index 0000000..7bfeaac --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayout/ViewController.swift @@ -0,0 +1,65 @@ +import UIKit +import UICollectionViewLeftAlignedLayout + +class ViewController: UIViewController { + + private let cellIdentifier = "Cell" + private var timer: Timer! + private var layout: UICollectionViewAlignedLayout! + + @IBOutlet private var collectionView: UICollectionView! + + override func viewDidLoad() { + super.viewDidLoad() + + layout = UICollectionViewAlignedLayout() + layout.minimumLineSpacing = 10 + layout.minimumInteritemSpacing = 10 + layout.sectionInset = UIEdgeInsets(top: 20, left: 10, bottom: 20, right: 10) + layout.layoutDirection = .right + collectionView.setCollectionViewLayout(layout, animated: true) + + timer = Timer.scheduledTimer(timeInterval: 5.0, target: self, selector: #selector(ViewController.relayout), userInfo: nil, repeats: true) + } + + @objc private func relayout() { + let options = [UICollectionViewLayoutDirection.left, UICollectionViewLayoutDirection.right] + layout.layoutDirection = options[Int(Int(arc4random()) % options.count)] + } + + override func viewWillDisappear(_ animated: Bool) { + super.viewWillDisappear(animated) + timer.invalidate() + } + +} + +extension ViewController: UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout { + func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { + let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellIdentifier, for: indexPath) + return cell + } + + func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) { + cell.backgroundColor = UIColor.white + cell.layer.borderColor = UIColor.cyan.cgColor + cell.layer.borderWidth = 2 + cell.layer.shouldRasterize = true + cell.layer.rasterizationScale = UIScreen.main.scale + } + + func numberOfSections(in collectionView: UICollectionView) -> Int { + return 2 + } + + func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { + return section == 0 ? 5 : 10 + } + + func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize { + let randomWidth = CGFloat(arc4random() % 120) + 60 + return CGSize(width: randomWidth, height: 60) + } + +} + diff --git a/Example-Swift/UICollectionViewAlignedLayoutTests/Info.plist b/Example-Swift/UICollectionViewAlignedLayoutTests/Info.plist new file mode 100644 index 0000000..6c40a6c --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayoutTests/Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/Example-Swift/UICollectionViewAlignedLayoutTests/UICollectionViewAlignedLayoutTests.swift b/Example-Swift/UICollectionViewAlignedLayoutTests/UICollectionViewAlignedLayoutTests.swift new file mode 100644 index 0000000..118fdb6 --- /dev/null +++ b/Example-Swift/UICollectionViewAlignedLayoutTests/UICollectionViewAlignedLayoutTests.swift @@ -0,0 +1,36 @@ +// +// UICollectionViewAlignedLayoutTests.swift +// UICollectionViewAlignedLayoutTests +// +// Created by Ben Deckys on 9/11/17. +// Copyright © 2017 MIMIMI. All rights reserved. +// + +import XCTest +@testable import UICollectionViewAlignedLayout + +class UICollectionViewAlignedLayoutTests: 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. + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testPerformanceExample() { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/UICollectionViewLeftAlignedLayout.podspec b/UICollectionViewLeftAlignedLayout.podspec index 3ef5e55..16876e2 100644 --- a/UICollectionViewLeftAlignedLayout.podspec +++ b/UICollectionViewLeftAlignedLayout.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| s.social_media_url = "http://twitter.com/mokagio" s.platform = :ios, "10.0" s.source = { :git => "https://github.com/mokagio/UICollectionViewLeftAlignedLayout.git", :tag => version } - s.source_files = "UICollectionViewAlignedLayout" + s.source_files = "UICollectionViewLeftAlignedLayout", "UICollectionViewLeftAlignedLayout/**/*.{swift}" s.requires_arc = true s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4' } end diff --git a/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj b/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj index fd9f8f1..9253e39 100644 --- a/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj +++ b/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj @@ -176,12 +176,13 @@ GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 10.0; MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; + ONLY_ACTIVE_ARCH = NO; SDKROOT = iphoneos; STRIP_SWIFT_SYMBOLS = NO; SWIFT_OPTIMIZATION_LEVEL = "-O"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALID_ARCHS = "arm64 armv7 armv7s x86_64"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; @@ -227,6 +228,7 @@ SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + VALID_ARCHS = "arm64 armv7 armv7s x86_64"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; };