├── WOWCardStackView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CardView.swift │ └── CardStackView.swift ├── _Pods.xcodeproj ├── stack.gif ├── Example ├── WOWCardStackView │ ├── placeholder.jpg │ ├── MyCard.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── DetailsViewController.swift │ ├── ViewController.swift │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ └── MyCard.xib ├── Pods │ ├── Target Support Files │ │ ├── WOWCardStackView │ │ │ ├── WOWCardStackView.modulemap │ │ │ ├── WOWCardStackView-dummy.m │ │ │ ├── WOWCardStackView-prefix.pch │ │ │ ├── WOWCardStackView-umbrella.h │ │ │ ├── WOWCardStackView.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-WOWCardStackView_Tests │ │ │ ├── Pods-WOWCardStackView_Tests-acknowledgements.markdown │ │ │ ├── Pods-WOWCardStackView_Tests.modulemap │ │ │ ├── Pods-WOWCardStackView_Tests-dummy.m │ │ │ ├── Pods-WOWCardStackView_Tests-umbrella.h │ │ │ ├── Pods-WOWCardStackView_Tests.debug.xcconfig │ │ │ ├── Pods-WOWCardStackView_Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-WOWCardStackView_Tests-acknowledgements.plist │ │ │ ├── Pods-WOWCardStackView_Tests-frameworks.sh │ │ │ └── Pods-WOWCardStackView_Tests-resources.sh │ │ └── Pods-WOWCardStackView_Example │ │ │ ├── Pods-WOWCardStackView_Example.modulemap │ │ │ ├── Pods-WOWCardStackView_Example-dummy.m │ │ │ ├── Pods-WOWCardStackView_Example-umbrella.h │ │ │ ├── Pods-WOWCardStackView_Example.debug.xcconfig │ │ │ ├── Pods-WOWCardStackView_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-WOWCardStackView_Example-acknowledgements.markdown │ │ │ ├── Pods-WOWCardStackView_Example-acknowledgements.plist │ │ │ ├── Pods-WOWCardStackView_Example-frameworks.sh │ │ │ └── Pods-WOWCardStackView_Example-resources.sh │ ├── Pods.xcodeproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── project.pbxproj │ ├── Manifest.lock │ └── Local Podspecs │ │ └── WOWCardStackView.podspec.json ├── Podfile ├── WOWCardStackView.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── WOWCardStackView-Example.xcscheme │ └── project.pbxproj ├── WOWCardStackView.xcworkspace │ └── contents.xcworkspacedata ├── Podfile.lock └── Tests │ ├── Info.plist │ └── Tests.swift ├── .travis.yml ├── .gitignore ├── README.md ├── LICENSE └── WOWCardStackView.podspec /WOWCardStackView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WOWCardStackView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /stack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhao27/WOWCardStackView/HEAD/stack.gif -------------------------------------------------------------------------------- /Example/WOWCardStackView/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhao27/WOWCardStackView/HEAD/Example/WOWCardStackView/placeholder.jpg -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/WOWCardStackView/WOWCardStackView.modulemap: -------------------------------------------------------------------------------- 1 | framework module WOWCardStackView { 2 | umbrella header "WOWCardStackView-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/WOWCardStackView/WOWCardStackView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_WOWCardStackView : NSObject 3 | @end 4 | @implementation PodsDummy_WOWCardStackView 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'WOWCardStackView_Example' do 4 | pod 'WOWCardStackView', :path => '../' 5 | 6 | target 'WOWCardStackView_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_WOWCardStackView_Tests { 2 | umbrella header "Pods-WOWCardStackView_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/WOWCardStackView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_WOWCardStackView_Example { 2 | umbrella header "Pods-WOWCardStackView_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_WOWCardStackView_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_WOWCardStackView_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_WOWCardStackView_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_WOWCardStackView_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/WOWCardStackView/WOWCardStackView-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/WOWCardStackView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - WOWCardStackView (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - WOWCardStackView (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | WOWCardStackView: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | WOWCardStackView: c61693f1a89a9efe98803f444bd3ba04800551c2 13 | 14 | PODFILE CHECKSUM: b9dc39536f94480e8cd28db0da0997b3e63ec66c 15 | 16 | COCOAPODS: 1.2.0.beta.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - WOWCardStackView (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - WOWCardStackView (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | WOWCardStackView: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | WOWCardStackView: c61693f1a89a9efe98803f444bd3ba04800551c2 13 | 14 | PODFILE CHECKSUM: b9dc39536f94480e8cd28db0da0997b3e63ec66c 15 | 16 | COCOAPODS: 1.2.0.beta.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/WOWCardStackView/WOWCardStackView-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double WOWCardStackViewVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char WOWCardStackViewVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_WOWCardStackView_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_WOWCardStackView_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_WOWCardStackView_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_WOWCardStackView_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -workspace Example/WOWCardStackView.xcworkspace -scheme WOWCardStackView-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/WOWCardStackView" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/WOWCardStackView/WOWCardStackView.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT}/Pods 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/WOWCardStackView" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/WOWCardStackView/WOWCardStackView.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT}/Pods 8 | -------------------------------------------------------------------------------- /Example/WOWCardStackView/MyCard.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MyCard.swift 3 | // CardStack 4 | // 5 | // Created by Zhou Hao on 11/3/17. 6 | // Copyright © 2017 Zhou Hao. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import WOWCardStackView 11 | 12 | class MyCard: CardView { 13 | @IBOutlet weak var numberLabel: UILabel! 14 | 15 | var id: Int 16 | 17 | init(id: Int) { 18 | self.id = id 19 | super.init(frame: CGRect.zero) 20 | } 21 | 22 | required init?(coder aDecoder: NSCoder) { 23 | self.id = 0 24 | super.init(coder: aDecoder) 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/WOWCardStackView/WOWCardStackView.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/WOWCardStackView 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/WOWCardStackView.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WOWCardStackView", 3 | "version": "0.1.0", 4 | "summary": "A short description of WOWCardStackView.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/zhouhao27/WOWCardStackView", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "zhouhao27": "zhou.hao.27@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/zhouhao27/WOWCardStackView.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "WOWCardStackView/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/WOWCardStackView" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/WOWCardStackView/WOWCardStackView.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "WOWCardStackView" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_ROOT = ${SRCROOT}/Pods 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/WOWCardStackView" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/WOWCardStackView/WOWCardStackView.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "WOWCardStackView" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_ROOT = ${SRCROOT}/Pods 11 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import XCTest 3 | import WOWCardStackView 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | self.measure() { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/WOWCardStackView/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/WOWCardStackView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | } 43 | ], 44 | "info" : { 45 | "version" : 1, 46 | "author" : "xcode" 47 | } 48 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WOWCardStackView 2 | 3 | [![Version](https://img.shields.io/cocoapods/v/WOWCardStackView.svg?style=flat)](http://cocoapods.org/pods/WOWCardStackView) 4 | [![License](https://img.shields.io/cocoapods/l/WOWCardStackView.svg?style=flat)](http://cocoapods.org/pods/WOWCardStackView) 5 | [![Platform](https://img.shields.io/cocoapods/p/WOWCardStackView.svg?style=flat)](http://cocoapods.org/pods/WOWCardStackView) 6 | 7 | Swipable card stack view. 8 | 9 | ![alt tag](stack.gif) 10 | 11 | ## Example 12 | 13 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 14 | 15 | ## Requirements 16 | 17 | ## Installation 18 | 19 | WOWCardStackView is available through [CocoaPods](http://cocoapods.org). To install 20 | it, simply add the following line to your Podfile: 21 | 22 | ```ruby 23 | pod "WOWCardStackView" 24 | ``` 25 | 26 | ## Author 27 | 28 | zhouhao27, zhou.hao.27@gmail.com 29 | 30 | ## License 31 | 32 | WOWCardStackView is available under the MIT license. See the LICENSE file for more info. 33 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 zhouhao27 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Example/WOWCardStackView/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/WOWCardStackView/DetailsViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DetailsViewController.swift 3 | // WOWCardStackView 4 | // 5 | // Created by Zhou Hao on 17/3/17. 6 | // Copyright © 2017 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import WOWCardStackView 11 | 12 | class DetailsViewController: UIViewController, CardStackViewDataSource { 13 | 14 | @IBOutlet weak var cardStackView: CardStackView! 15 | var id: Int! 16 | var orderNo: Int = 5 17 | 18 | override func viewDidLoad() { 19 | super.viewDidLoad() 20 | 21 | self.title = "\(id!)" 22 | 23 | cardStackView.register(nib: UINib(nibName: "MyCard", bundle: nil)) 24 | cardStackView.dataSource = self 25 | 26 | } 27 | 28 | func nextCard(in: CardStackView) -> CardView? { 29 | let card = cardStackView.dequeueCardView() as! MyCard 30 | card.numberLabel.text = "\(orderNo)" 31 | orderNo += 1 32 | return card 33 | } 34 | 35 | func cardStackView(_ cardStackView: CardStackView, cardAt index: Int) -> CardView { 36 | let card = cardStackView.dequeueCardView() as! MyCard 37 | card.numberLabel.text = "\(index)" 38 | return card 39 | } 40 | 41 | func numOfCardInStackView(_ cardStackView: CardStackView) -> Int { 42 | return 5 43 | } 44 | 45 | } 46 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## WOWCardStackView 5 | 6 | Copyright (c) 2017 zhouhao27 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /WOWCardStackView.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint WOWCardStackView.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'WOWCardStackView' 11 | s.version = '0.1.4' 12 | s.summary = 'Swapable Card Stack View in Swift 5.2.' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | Swapable Card Stack View in Swift 5.2. It's able to use in Storyboard and Programatically and it's similar to UITableView. 22 | DESC 23 | 24 | s.homepage = 'https://github.com/zhouhao27/WOWCardStackView' 25 | s.license = { :type => 'MIT', :file => 'LICENSE' } 26 | s.author = { 'Zhou Hao' => 'zhou.hao.27@gmail.com' } 27 | s.source = { :git => 'https://github.com/zhouhao27/WOWCardStackView.git', :tag => s.version.to_s } 28 | 29 | s.ios.deployment_target = '8.0' 30 | 31 | s.source_files = 'WOWCardStackView/Classes/**/*' 32 | 33 | # s.resource_bundles = { 34 | # 'WOWCardStackView' => ['WOWCardStackView/Assets/*.png'] 35 | # } 36 | 37 | # s.public_header_files = 'Pod/Classes/**/*.h' 38 | # s.frameworks = 'UIKit', 'MapKit' 39 | # s.dependency 'AFNetworking', '~> 2.3' 40 | end 41 | -------------------------------------------------------------------------------- /Example/WOWCardStackView/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // CardStack 4 | // 5 | // Created by Zhou Hao on 11/3/17. 6 | // Copyright © 2017 Zhou Hao. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import WOWCardStackView 11 | 12 | class ViewController: UIViewController, CardStackViewDataSource, CardStackViewDelegate { 13 | 14 | @IBOutlet weak var cardStackView: CardStackView! 15 | var orderNo: Int = 3 16 | 17 | override func viewDidLoad() { 18 | super.viewDidLoad() 19 | 20 | cardStackView.dataSource = self 21 | cardStackView.delegate = self 22 | } 23 | 24 | func nextCard(in: CardStackView) -> CardView? { 25 | let card = createCard(order: orderNo) 26 | orderNo += 1 27 | return card 28 | } 29 | 30 | func cardStackView(_ cardStackView: CardStackView, cardAt index: Int) -> CardView { 31 | return createCard(order: index) 32 | } 33 | 34 | func numOfCardInStackView(_ cardStackView: CardStackView) -> Int { 35 | return 3 36 | } 37 | 38 | public func cardStackView(_: CardStackView, didSelect card: CardView) { 39 | if let card = card as? MyCard { 40 | print("Clicked: \(card.id)") 41 | 42 | if let details = self.storyboard?.instantiateViewController(withIdentifier: "DetailsViewController") as? DetailsViewController { 43 | details.id = card.id 44 | self.navigationController?.pushViewController(details, animated: true) 45 | } 46 | } 47 | } 48 | 49 | func createCard(order: Int) -> MyCard { 50 | let card = MyCard(id: order) 51 | card.id = order 52 | let label = UILabel(frame: CGRect(x: 0, y: 0, width: 100, height: 100)) 53 | label.font = UIFont(name: "Arial", size: 28) 54 | label.text = "\(order)" 55 | label.textAlignment = .center 56 | label.textColor = UIColor.white 57 | card.addSubview(label) 58 | card.backgroundColor = UIColor.red 59 | card.borderWidth = 1.0 60 | card.borderColor = UIColor.lightGray 61 | card.isShadowed = true 62 | return card 63 | } 64 | 65 | } 66 | 67 | -------------------------------------------------------------------------------- /Example/WOWCardStackView/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // CardStack 4 | // 5 | // Created by Zhou Hao on 11/3/17. 6 | // Copyright © 2017 Zhou Hao. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2017 zhouhao27 <zhou.hao.27@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | WOWCardStackView 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/WOWCardStackView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1"" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 91 | wait 92 | fi 93 | -------------------------------------------------------------------------------- /WOWCardStackView/Classes/CardView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CardView.swift 3 | // CardStack 4 | // 5 | // Created by Zhou Hao on 11/3/17. 6 | // Modified by Devzhr on 27/5/20. 7 | // Copyright © 2017 Zhou Hao. All rights reserved. 8 | // 9 | 10 | import UIKit 11 | 12 | public protocol CardViewDelegate: class { 13 | func shouldRemoveCardView(_ cardView: CardView) 14 | func cardViewDidSelected(_ cardView: CardView) 15 | } 16 | 17 | @IBDesignable 18 | open class CardView: UIView { 19 | 20 | private var originCenter: CGPoint! 21 | private var dragged: Bool = false 22 | 23 | weak var delegate: CardViewDelegate? 24 | 25 | @IBInspectable 26 | public var borderColor: UIColor = UIColor.clear { 27 | willSet { 28 | self.layer.borderColor = newValue.cgColor 29 | } 30 | } 31 | 32 | @IBInspectable 33 | public var borderWidth: CGFloat = 0 { 34 | willSet { 35 | self.layer.borderWidth = newValue 36 | } 37 | } 38 | 39 | @IBInspectable 40 | public var isShadowed: Bool = false { 41 | willSet { 42 | if newValue { 43 | self.layer.shadowColor = UIColor.black.cgColor 44 | self.layer.shadowOpacity = 0.6 45 | self.layer.shadowOffset = CGSize.zero 46 | self.layer.shadowRadius = 5 47 | } 48 | } 49 | } 50 | 51 | public override init(frame: CGRect) { 52 | super.init(frame: frame) 53 | setup() 54 | } 55 | 56 | required public init?(coder aDecoder: NSCoder) { 57 | super.init(coder: aDecoder) 58 | setup() 59 | } 60 | 61 | func setup() { 62 | let gesture = UIPanGestureRecognizer(target: self, action: #selector(drag(gesture:))) 63 | self.addGestureRecognizer(gesture) 64 | } 65 | 66 | override open func touchesBegan(_ touches: Set, with event: UIEvent?) { 67 | super.touchesBegan(touches, with: event) 68 | 69 | originCenter = self.center 70 | dragged = false 71 | } 72 | 73 | open override func touchesEnded(_ touches: Set, with event: UIEvent?) { 74 | super.touchesEnded(touches, with: event) 75 | 76 | guard isTopMost() else { 77 | return 78 | } 79 | 80 | if !dragged { 81 | self.delegate?.cardViewDidSelected(self) 82 | } 83 | } 84 | 85 | @objc func drag(gesture: UIPanGestureRecognizer) { 86 | 87 | guard isTopMost() else { 88 | return 89 | } 90 | 91 | let translation = gesture.translation(in: self) 92 | 93 | if gesture.state == .ended { 94 | 95 | if abs(translation.x) > bounds.width / 2.0 || abs(translation.y) > bounds.height / 2.0 { 96 | delegate?.shouldRemoveCardView(self) 97 | 98 | // TODO: better animation 99 | // UIView.animate(withDuration: 0.5, animations: { 100 | // self.center = CGPoint(x:-1000, y: 0) 101 | // }, completion: { (complete) in 102 | // self.removeFromSuperview() 103 | // }) 104 | 105 | self.removeFromSuperview() 106 | } else { 107 | // return back to original position 108 | UIView.animate(withDuration: 0.3, delay: 0, usingSpringWithDamping: 0.6, initialSpringVelocity: 10, options: .curveEaseInOut, animations: { 109 | self.center = self.originCenter 110 | }, completion: { (complete) in 111 | }) 112 | } 113 | return 114 | } 115 | 116 | dragged = true 117 | self.center = CGPoint(x: originCenter.x + translation.x, y: originCenter.y + translation.y) 118 | } 119 | 120 | //MARK: - Private 121 | func isTopMost() -> Bool { 122 | return self.superview?.subviews.last == self 123 | } 124 | 125 | } 126 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1"" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | 91 | if [[ "$CONFIGURATION" == "Debug" ]]; then 92 | install_framework "$BUILT_PRODUCTS_DIR/WOWCardStackView/WOWCardStackView.framework" 93 | fi 94 | if [[ "$CONFIGURATION" == "Release" ]]; then 95 | install_framework "$BUILT_PRODUCTS_DIR/WOWCardStackView/WOWCardStackView.framework" 96 | fi 97 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 98 | wait 99 | fi 100 | -------------------------------------------------------------------------------- /WOWCardStackView/Classes/CardStackView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CardStackView.swift 3 | // CardStack 4 | // 5 | // Created by Zhou Hao on 11/3/17. 6 | // Copyright © 2017 Zhou Hao. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public protocol CardStackViewDataSource: class { 12 | func nextCard(in: CardStackView) -> CardView? 13 | func cardStackView(_ cardStackView: CardStackView, cardAt index: Int) -> CardView 14 | func numOfCardInStackView(_ cardStackView: CardStackView) -> Int 15 | } 16 | 17 | public protocol CardStackViewDelegate: class { 18 | func cardStackView(_: CardStackView, didSelect card: CardView) 19 | } 20 | 21 | @IBDesignable 22 | public class CardStackView: UIView, CardViewDelegate { 23 | 24 | // MARK: - Properties 25 | public weak var dataSource: CardStackViewDataSource? { // TODO: add to dataSource in Inspector 26 | didSet { 27 | reloadData() 28 | } 29 | } 30 | 31 | public weak var delegate: CardStackViewDelegate? 32 | 33 | // MARK: - Private properties 34 | private var nib : UINib? 35 | 36 | // MARK: - Inspectable properties 37 | @IBInspectable 38 | public var offsetY: CGFloat = 0 { 39 | didSet { 40 | layoutIfNeeded() 41 | } 42 | } 43 | 44 | @IBInspectable 45 | public var scaleFactor: Float = 0 { 46 | didSet { 47 | layoutIfNeeded() 48 | } 49 | } 50 | 51 | // MARK: - Public methods 52 | public func register(nib: UINib) { 53 | self.nib = nib 54 | } 55 | 56 | public func dequeueCardView() -> CardView { 57 | if let view = nib?.instantiate(withOwner: self, options: nil).first as? CardView { 58 | return view 59 | } else { 60 | return CardView() 61 | } 62 | } 63 | 64 | public func reloadData() { 65 | 66 | subviews.filter { $0.isKind(of: CardView.self) }.forEach { $0.removeFromSuperview() } 67 | 68 | if let dataSource = dataSource { 69 | let total = dataSource.numOfCardInStackView(self) 70 | 71 | var prevView: UIView? 72 | for i in 0.. CGRect { 117 | 118 | if let dataSource = dataSource { 119 | let total = dataSource.numOfCardInStackView(self) 120 | 121 | let w = bounds.width 122 | let h = bounds.height - CGFloat(total - 1) * offsetY 123 | 124 | let scale = CGFloat(pow(scaleFactor, Float(index))) 125 | let x = ( w - w * scale ) / 2.0 126 | let y = CGFloat(index)*offsetY + ( h - h * scale ) 127 | return CGRect(x: x, y: y, width: w * scale, height: h * scale) 128 | } 129 | return CGRect.zero 130 | } 131 | } 132 | -------------------------------------------------------------------------------- /Example/WOWCardStackView/MyCard.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /Example/WOWCardStackView.xcodeproj/xcshareddata/xcschemes/WOWCardStackView-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | *) 25 | TARGET_DEVICE_ARGS="--target-device mac" 26 | ;; 27 | esac 28 | 29 | install_resource() 30 | { 31 | if [[ "$1" = /* ]] ; then 32 | RESOURCE_PATH="$1" 33 | else 34 | RESOURCE_PATH="${PODS_ROOT}/$1" 35 | fi 36 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 37 | cat << EOM 38 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 39 | EOM 40 | exit 1 41 | fi 42 | case $RESOURCE_PATH in 43 | *.storyboard) 44 | 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}" 45 | 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} 46 | ;; 47 | *.xib) 48 | 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}" 49 | 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} 50 | ;; 51 | *.framework) 52 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 54 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 55 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | ;; 57 | *.xcdatamodel) 58 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 59 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 60 | ;; 61 | *.xcdatamodeld) 62 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 63 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 64 | ;; 65 | *.xcmappingmodel) 66 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 67 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 68 | ;; 69 | *.xcassets) 70 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 71 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 72 | ;; 73 | *) 74 | echo "$RESOURCE_PATH" 75 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 76 | ;; 77 | esac 78 | } 79 | 80 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 83 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | fi 86 | rm -f "$RESOURCES_TO_COPY" 87 | 88 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 89 | then 90 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 91 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 92 | while read line; do 93 | if [[ $line != "${PODS_ROOT}*" ]]; then 94 | XCASSET_FILES+=("$line") 95 | fi 96 | done <<<"$OTHER_XCASSETS" 97 | 98 | 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}" 99 | fi 100 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | *) 25 | TARGET_DEVICE_ARGS="--target-device mac" 26 | ;; 27 | esac 28 | 29 | install_resource() 30 | { 31 | if [[ "$1" = /* ]] ; then 32 | RESOURCE_PATH="$1" 33 | else 34 | RESOURCE_PATH="${PODS_ROOT}/$1" 35 | fi 36 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 37 | cat << EOM 38 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 39 | EOM 40 | exit 1 41 | fi 42 | case $RESOURCE_PATH in 43 | *.storyboard) 44 | 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}" 45 | 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} 46 | ;; 47 | *.xib) 48 | 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}" 49 | 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} 50 | ;; 51 | *.framework) 52 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 54 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 55 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | ;; 57 | *.xcdatamodel) 58 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 59 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 60 | ;; 61 | *.xcdatamodeld) 62 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 63 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 64 | ;; 65 | *.xcmappingmodel) 66 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 67 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 68 | ;; 69 | *.xcassets) 70 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 71 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 72 | ;; 73 | *) 74 | echo "$RESOURCE_PATH" 75 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 76 | ;; 77 | esac 78 | } 79 | 80 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 83 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | fi 86 | rm -f "$RESOURCES_TO_COPY" 87 | 88 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 89 | then 90 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 91 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 92 | while read line; do 93 | if [[ $line != "${PODS_ROOT}*" ]]; then 94 | XCASSET_FILES+=("$line") 95 | fi 96 | done <<<"$OTHER_XCASSETS" 97 | 98 | 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}" 99 | fi 100 | -------------------------------------------------------------------------------- /Example/WOWCardStackView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | -------------------------------------------------------------------------------- /Example/WOWCardStackView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 386177201E7BBF68006F4F5E /* DetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3861771F1E7BBF68006F4F5E /* DetailsViewController.swift */; }; 11 | 386177221E7BC2DD006F4F5E /* placeholder.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 386177211E7BC2DD006F4F5E /* placeholder.jpg */; }; 12 | 38F5CE7A1E7B881700A7FCA0 /* MyCard.xib in Resources */ = {isa = PBXBuildFile; fileRef = 38F5CE791E7B881700A7FCA0 /* MyCard.xib */; }; 13 | 38F5CE7C1E7B8A1600A7FCA0 /* MyCard.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F5CE7B1E7B8A1600A7FCA0 /* MyCard.swift */; }; 14 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 15 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 16 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 17 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 18 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 19 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 20 | D334F37306218BC073A43DC1 /* Pods_WOWCardStackView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC971318D727AE614DE65F62 /* Pods_WOWCardStackView_Example.framework */; }; 21 | F9D87F4907C2918C2720E6C4 /* Pods_WOWCardStackView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22BB6C624B682C38943B9C46 /* Pods_WOWCardStackView_Tests.framework */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 30 | remoteInfo = WOWCardStackView; 31 | }; 32 | /* End PBXContainerItemProxy section */ 33 | 34 | /* Begin PBXFileReference section */ 35 | 04271AF4CC904165CC199877 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 36 | 0C60282BA410B7570717C313 /* Pods-WOWCardStackView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-WOWCardStackView_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests.debug.xcconfig"; sourceTree = ""; }; 37 | 22BB6C624B682C38943B9C46 /* Pods_WOWCardStackView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_WOWCardStackView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 38 | 30091B23E72D1AB9E49886BF /* Pods-WOWCardStackView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-WOWCardStackView_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example.release.xcconfig"; sourceTree = ""; }; 39 | 3861771F1E7BBF68006F4F5E /* DetailsViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DetailsViewController.swift; sourceTree = ""; }; 40 | 386177211E7BC2DD006F4F5E /* placeholder.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = placeholder.jpg; sourceTree = ""; }; 41 | 38F5CE791E7B881700A7FCA0 /* MyCard.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyCard.xib; sourceTree = ""; }; 42 | 38F5CE7B1E7B8A1600A7FCA0 /* MyCard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MyCard.swift; sourceTree = ""; }; 43 | 5D57B462CADD95BAA877731F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 44 | 607FACD01AFB9204008FA782 /* WOWCardStackView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = WOWCardStackView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 46 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 47 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 48 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 49 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 50 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 51 | 607FACE51AFB9204008FA782 /* WOWCardStackView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = WOWCardStackView_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 52 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 53 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 54 | 8076A3CDAB0ADAF509062214 /* Pods-WOWCardStackView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-WOWCardStackView_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests.release.xcconfig"; sourceTree = ""; }; 55 | B6882FF4372567182F24C0A8 /* WOWCardStackView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = WOWCardStackView.podspec; path = ../WOWCardStackView.podspec; sourceTree = ""; }; 56 | DC971318D727AE614DE65F62 /* Pods_WOWCardStackView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_WOWCardStackView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 57 | E28B962471985F952144D037 /* Pods-WOWCardStackView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-WOWCardStackView_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example.debug.xcconfig"; sourceTree = ""; }; 58 | /* End PBXFileReference section */ 59 | 60 | /* Begin PBXFrameworksBuildPhase section */ 61 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | D334F37306218BC073A43DC1 /* Pods_WOWCardStackView_Example.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 70 | isa = PBXFrameworksBuildPhase; 71 | buildActionMask = 2147483647; 72 | files = ( 73 | F9D87F4907C2918C2720E6C4 /* Pods_WOWCardStackView_Tests.framework in Frameworks */, 74 | ); 75 | runOnlyForDeploymentPostprocessing = 0; 76 | }; 77 | /* End PBXFrameworksBuildPhase section */ 78 | 79 | /* Begin PBXGroup section */ 80 | 27A4E015D8F7F5E706CD16D1 /* Pods */ = { 81 | isa = PBXGroup; 82 | children = ( 83 | E28B962471985F952144D037 /* Pods-WOWCardStackView_Example.debug.xcconfig */, 84 | 30091B23E72D1AB9E49886BF /* Pods-WOWCardStackView_Example.release.xcconfig */, 85 | 0C60282BA410B7570717C313 /* Pods-WOWCardStackView_Tests.debug.xcconfig */, 86 | 8076A3CDAB0ADAF509062214 /* Pods-WOWCardStackView_Tests.release.xcconfig */, 87 | ); 88 | name = Pods; 89 | sourceTree = ""; 90 | }; 91 | 607FACC71AFB9204008FA782 = { 92 | isa = PBXGroup; 93 | children = ( 94 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 95 | 607FACD21AFB9204008FA782 /* Example for WOWCardStackView */, 96 | 607FACE81AFB9204008FA782 /* Tests */, 97 | 607FACD11AFB9204008FA782 /* Products */, 98 | 27A4E015D8F7F5E706CD16D1 /* Pods */, 99 | AAC8F27A3901A27B96B5EF87 /* Frameworks */, 100 | ); 101 | sourceTree = ""; 102 | }; 103 | 607FACD11AFB9204008FA782 /* Products */ = { 104 | isa = PBXGroup; 105 | children = ( 106 | 607FACD01AFB9204008FA782 /* WOWCardStackView_Example.app */, 107 | 607FACE51AFB9204008FA782 /* WOWCardStackView_Tests.xctest */, 108 | ); 109 | name = Products; 110 | sourceTree = ""; 111 | }; 112 | 607FACD21AFB9204008FA782 /* Example for WOWCardStackView */ = { 113 | isa = PBXGroup; 114 | children = ( 115 | 386177211E7BC2DD006F4F5E /* placeholder.jpg */, 116 | 38F5CE7B1E7B8A1600A7FCA0 /* MyCard.swift */, 117 | 38F5CE791E7B881700A7FCA0 /* MyCard.xib */, 118 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 119 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 120 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 121 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 122 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 123 | 607FACD31AFB9204008FA782 /* Supporting Files */, 124 | 3861771F1E7BBF68006F4F5E /* DetailsViewController.swift */, 125 | ); 126 | name = "Example for WOWCardStackView"; 127 | path = WOWCardStackView; 128 | sourceTree = ""; 129 | }; 130 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 131 | isa = PBXGroup; 132 | children = ( 133 | 607FACD41AFB9204008FA782 /* Info.plist */, 134 | ); 135 | name = "Supporting Files"; 136 | sourceTree = ""; 137 | }; 138 | 607FACE81AFB9204008FA782 /* Tests */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 142 | 607FACE91AFB9204008FA782 /* Supporting Files */, 143 | ); 144 | path = Tests; 145 | sourceTree = ""; 146 | }; 147 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 148 | isa = PBXGroup; 149 | children = ( 150 | 607FACEA1AFB9204008FA782 /* Info.plist */, 151 | ); 152 | name = "Supporting Files"; 153 | sourceTree = ""; 154 | }; 155 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | B6882FF4372567182F24C0A8 /* WOWCardStackView.podspec */, 159 | 04271AF4CC904165CC199877 /* README.md */, 160 | 5D57B462CADD95BAA877731F /* LICENSE */, 161 | ); 162 | name = "Podspec Metadata"; 163 | sourceTree = ""; 164 | }; 165 | AAC8F27A3901A27B96B5EF87 /* Frameworks */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | DC971318D727AE614DE65F62 /* Pods_WOWCardStackView_Example.framework */, 169 | 22BB6C624B682C38943B9C46 /* Pods_WOWCardStackView_Tests.framework */, 170 | ); 171 | name = Frameworks; 172 | sourceTree = ""; 173 | }; 174 | /* End PBXGroup section */ 175 | 176 | /* Begin PBXNativeTarget section */ 177 | 607FACCF1AFB9204008FA782 /* WOWCardStackView_Example */ = { 178 | isa = PBXNativeTarget; 179 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "WOWCardStackView_Example" */; 180 | buildPhases = ( 181 | F98EB0D2B0968823BC149322 /* [CP] Check Pods Manifest.lock */, 182 | 607FACCC1AFB9204008FA782 /* Sources */, 183 | 607FACCD1AFB9204008FA782 /* Frameworks */, 184 | 607FACCE1AFB9204008FA782 /* Resources */, 185 | A30ECA7AD79BFD7D23579EBA /* [CP] Embed Pods Frameworks */, 186 | C72118027265D2C3DF089AB3 /* [CP] Copy Pods Resources */, 187 | ); 188 | buildRules = ( 189 | ); 190 | dependencies = ( 191 | ); 192 | name = WOWCardStackView_Example; 193 | productName = WOWCardStackView; 194 | productReference = 607FACD01AFB9204008FA782 /* WOWCardStackView_Example.app */; 195 | productType = "com.apple.product-type.application"; 196 | }; 197 | 607FACE41AFB9204008FA782 /* WOWCardStackView_Tests */ = { 198 | isa = PBXNativeTarget; 199 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "WOWCardStackView_Tests" */; 200 | buildPhases = ( 201 | C6C5FE3A8B4EF2FAC4A17E03 /* [CP] Check Pods Manifest.lock */, 202 | 607FACE11AFB9204008FA782 /* Sources */, 203 | 607FACE21AFB9204008FA782 /* Frameworks */, 204 | 607FACE31AFB9204008FA782 /* Resources */, 205 | DD70981DA94833DF51E7F203 /* [CP] Embed Pods Frameworks */, 206 | B8383C45337603F3C5C5B50B /* [CP] Copy Pods Resources */, 207 | ); 208 | buildRules = ( 209 | ); 210 | dependencies = ( 211 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 212 | ); 213 | name = WOWCardStackView_Tests; 214 | productName = Tests; 215 | productReference = 607FACE51AFB9204008FA782 /* WOWCardStackView_Tests.xctest */; 216 | productType = "com.apple.product-type.bundle.unit-test"; 217 | }; 218 | /* End PBXNativeTarget section */ 219 | 220 | /* Begin PBXProject section */ 221 | 607FACC81AFB9204008FA782 /* Project object */ = { 222 | isa = PBXProject; 223 | attributes = { 224 | LastSwiftUpdateCheck = 0720; 225 | LastUpgradeCheck = 0820; 226 | ORGANIZATIONNAME = CocoaPods; 227 | TargetAttributes = { 228 | 607FACCF1AFB9204008FA782 = { 229 | CreatedOnToolsVersion = 6.3.1; 230 | LastSwiftMigration = 0820; 231 | }; 232 | 607FACE41AFB9204008FA782 = { 233 | CreatedOnToolsVersion = 6.3.1; 234 | LastSwiftMigration = 0820; 235 | TestTargetID = 607FACCF1AFB9204008FA782; 236 | }; 237 | }; 238 | }; 239 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "WOWCardStackView" */; 240 | compatibilityVersion = "Xcode 3.2"; 241 | developmentRegion = English; 242 | hasScannedForEncodings = 0; 243 | knownRegions = ( 244 | en, 245 | Base, 246 | ); 247 | mainGroup = 607FACC71AFB9204008FA782; 248 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 249 | projectDirPath = ""; 250 | projectRoot = ""; 251 | targets = ( 252 | 607FACCF1AFB9204008FA782 /* WOWCardStackView_Example */, 253 | 607FACE41AFB9204008FA782 /* WOWCardStackView_Tests */, 254 | ); 255 | }; 256 | /* End PBXProject section */ 257 | 258 | /* Begin PBXResourcesBuildPhase section */ 259 | 607FACCE1AFB9204008FA782 /* Resources */ = { 260 | isa = PBXResourcesBuildPhase; 261 | buildActionMask = 2147483647; 262 | files = ( 263 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 264 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 265 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 266 | 386177221E7BC2DD006F4F5E /* placeholder.jpg in Resources */, 267 | 38F5CE7A1E7B881700A7FCA0 /* MyCard.xib in Resources */, 268 | ); 269 | runOnlyForDeploymentPostprocessing = 0; 270 | }; 271 | 607FACE31AFB9204008FA782 /* Resources */ = { 272 | isa = PBXResourcesBuildPhase; 273 | buildActionMask = 2147483647; 274 | files = ( 275 | ); 276 | runOnlyForDeploymentPostprocessing = 0; 277 | }; 278 | /* End PBXResourcesBuildPhase section */ 279 | 280 | /* Begin PBXShellScriptBuildPhase section */ 281 | A30ECA7AD79BFD7D23579EBA /* [CP] Embed Pods Frameworks */ = { 282 | isa = PBXShellScriptBuildPhase; 283 | buildActionMask = 2147483647; 284 | files = ( 285 | ); 286 | inputPaths = ( 287 | ); 288 | name = "[CP] Embed Pods Frameworks"; 289 | outputPaths = ( 290 | ); 291 | runOnlyForDeploymentPostprocessing = 0; 292 | shellPath = /bin/sh; 293 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example-frameworks.sh\"\n"; 294 | showEnvVarsInLog = 0; 295 | }; 296 | B8383C45337603F3C5C5B50B /* [CP] Copy Pods Resources */ = { 297 | isa = PBXShellScriptBuildPhase; 298 | buildActionMask = 2147483647; 299 | files = ( 300 | ); 301 | inputPaths = ( 302 | ); 303 | name = "[CP] Copy Pods Resources"; 304 | outputPaths = ( 305 | ); 306 | runOnlyForDeploymentPostprocessing = 0; 307 | shellPath = /bin/sh; 308 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests-resources.sh\"\n"; 309 | showEnvVarsInLog = 0; 310 | }; 311 | C6C5FE3A8B4EF2FAC4A17E03 /* [CP] Check Pods Manifest.lock */ = { 312 | isa = PBXShellScriptBuildPhase; 313 | buildActionMask = 2147483647; 314 | files = ( 315 | ); 316 | inputPaths = ( 317 | ); 318 | name = "[CP] Check Pods Manifest.lock"; 319 | outputPaths = ( 320 | ); 321 | runOnlyForDeploymentPostprocessing = 0; 322 | shellPath = /bin/sh; 323 | shellScript = "diff \"${PODS_ROOT}/../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"; 324 | showEnvVarsInLog = 0; 325 | }; 326 | C72118027265D2C3DF089AB3 /* [CP] Copy Pods Resources */ = { 327 | isa = PBXShellScriptBuildPhase; 328 | buildActionMask = 2147483647; 329 | files = ( 330 | ); 331 | inputPaths = ( 332 | ); 333 | name = "[CP] Copy Pods Resources"; 334 | outputPaths = ( 335 | ); 336 | runOnlyForDeploymentPostprocessing = 0; 337 | shellPath = /bin/sh; 338 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example-resources.sh\"\n"; 339 | showEnvVarsInLog = 0; 340 | }; 341 | DD70981DA94833DF51E7F203 /* [CP] Embed Pods Frameworks */ = { 342 | isa = PBXShellScriptBuildPhase; 343 | buildActionMask = 2147483647; 344 | files = ( 345 | ); 346 | inputPaths = ( 347 | ); 348 | name = "[CP] Embed Pods Frameworks"; 349 | outputPaths = ( 350 | ); 351 | runOnlyForDeploymentPostprocessing = 0; 352 | shellPath = /bin/sh; 353 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests-frameworks.sh\"\n"; 354 | showEnvVarsInLog = 0; 355 | }; 356 | F98EB0D2B0968823BC149322 /* [CP] Check Pods Manifest.lock */ = { 357 | isa = PBXShellScriptBuildPhase; 358 | buildActionMask = 2147483647; 359 | files = ( 360 | ); 361 | inputPaths = ( 362 | ); 363 | name = "[CP] Check Pods Manifest.lock"; 364 | outputPaths = ( 365 | ); 366 | runOnlyForDeploymentPostprocessing = 0; 367 | shellPath = /bin/sh; 368 | shellScript = "diff \"${PODS_ROOT}/../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"; 369 | showEnvVarsInLog = 0; 370 | }; 371 | /* End PBXShellScriptBuildPhase section */ 372 | 373 | /* Begin PBXSourcesBuildPhase section */ 374 | 607FACCC1AFB9204008FA782 /* Sources */ = { 375 | isa = PBXSourcesBuildPhase; 376 | buildActionMask = 2147483647; 377 | files = ( 378 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 379 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 380 | 38F5CE7C1E7B8A1600A7FCA0 /* MyCard.swift in Sources */, 381 | 386177201E7BBF68006F4F5E /* DetailsViewController.swift in Sources */, 382 | ); 383 | runOnlyForDeploymentPostprocessing = 0; 384 | }; 385 | 607FACE11AFB9204008FA782 /* Sources */ = { 386 | isa = PBXSourcesBuildPhase; 387 | buildActionMask = 2147483647; 388 | files = ( 389 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 390 | ); 391 | runOnlyForDeploymentPostprocessing = 0; 392 | }; 393 | /* End PBXSourcesBuildPhase section */ 394 | 395 | /* Begin PBXTargetDependency section */ 396 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 397 | isa = PBXTargetDependency; 398 | target = 607FACCF1AFB9204008FA782 /* WOWCardStackView_Example */; 399 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 400 | }; 401 | /* End PBXTargetDependency section */ 402 | 403 | /* Begin PBXVariantGroup section */ 404 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 405 | isa = PBXVariantGroup; 406 | children = ( 407 | 607FACDA1AFB9204008FA782 /* Base */, 408 | ); 409 | name = Main.storyboard; 410 | sourceTree = ""; 411 | }; 412 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 413 | isa = PBXVariantGroup; 414 | children = ( 415 | 607FACDF1AFB9204008FA782 /* Base */, 416 | ); 417 | name = LaunchScreen.xib; 418 | sourceTree = ""; 419 | }; 420 | /* End PBXVariantGroup section */ 421 | 422 | /* Begin XCBuildConfiguration section */ 423 | 607FACED1AFB9204008FA782 /* Debug */ = { 424 | isa = XCBuildConfiguration; 425 | buildSettings = { 426 | ALWAYS_SEARCH_USER_PATHS = NO; 427 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 428 | CLANG_CXX_LIBRARY = "libc++"; 429 | CLANG_ENABLE_MODULES = YES; 430 | CLANG_ENABLE_OBJC_ARC = YES; 431 | CLANG_WARN_BOOL_CONVERSION = YES; 432 | CLANG_WARN_CONSTANT_CONVERSION = YES; 433 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 434 | CLANG_WARN_EMPTY_BODY = YES; 435 | CLANG_WARN_ENUM_CONVERSION = YES; 436 | CLANG_WARN_INFINITE_RECURSION = YES; 437 | CLANG_WARN_INT_CONVERSION = YES; 438 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 439 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 440 | CLANG_WARN_UNREACHABLE_CODE = YES; 441 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 442 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 443 | COPY_PHASE_STRIP = NO; 444 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 445 | ENABLE_STRICT_OBJC_MSGSEND = YES; 446 | ENABLE_TESTABILITY = YES; 447 | GCC_C_LANGUAGE_STANDARD = gnu99; 448 | GCC_DYNAMIC_NO_PIC = NO; 449 | GCC_NO_COMMON_BLOCKS = YES; 450 | GCC_OPTIMIZATION_LEVEL = 0; 451 | GCC_PREPROCESSOR_DEFINITIONS = ( 452 | "DEBUG=1", 453 | "$(inherited)", 454 | ); 455 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 456 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 457 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 458 | GCC_WARN_UNDECLARED_SELECTOR = YES; 459 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 460 | GCC_WARN_UNUSED_FUNCTION = YES; 461 | GCC_WARN_UNUSED_VARIABLE = YES; 462 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 463 | MTL_ENABLE_DEBUG_INFO = YES; 464 | ONLY_ACTIVE_ARCH = YES; 465 | SDKROOT = iphoneos; 466 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 467 | }; 468 | name = Debug; 469 | }; 470 | 607FACEE1AFB9204008FA782 /* Release */ = { 471 | isa = XCBuildConfiguration; 472 | buildSettings = { 473 | ALWAYS_SEARCH_USER_PATHS = NO; 474 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 475 | CLANG_CXX_LIBRARY = "libc++"; 476 | CLANG_ENABLE_MODULES = YES; 477 | CLANG_ENABLE_OBJC_ARC = YES; 478 | CLANG_WARN_BOOL_CONVERSION = YES; 479 | CLANG_WARN_CONSTANT_CONVERSION = YES; 480 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 481 | CLANG_WARN_EMPTY_BODY = YES; 482 | CLANG_WARN_ENUM_CONVERSION = YES; 483 | CLANG_WARN_INFINITE_RECURSION = YES; 484 | CLANG_WARN_INT_CONVERSION = YES; 485 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 486 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 487 | CLANG_WARN_UNREACHABLE_CODE = YES; 488 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 489 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 490 | COPY_PHASE_STRIP = NO; 491 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 492 | ENABLE_NS_ASSERTIONS = NO; 493 | ENABLE_STRICT_OBJC_MSGSEND = YES; 494 | GCC_C_LANGUAGE_STANDARD = gnu99; 495 | GCC_NO_COMMON_BLOCKS = YES; 496 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 497 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 498 | GCC_WARN_UNDECLARED_SELECTOR = YES; 499 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 500 | GCC_WARN_UNUSED_FUNCTION = YES; 501 | GCC_WARN_UNUSED_VARIABLE = YES; 502 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 503 | MTL_ENABLE_DEBUG_INFO = NO; 504 | SDKROOT = iphoneos; 505 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 506 | VALIDATE_PRODUCT = YES; 507 | }; 508 | name = Release; 509 | }; 510 | 607FACF01AFB9204008FA782 /* Debug */ = { 511 | isa = XCBuildConfiguration; 512 | baseConfigurationReference = E28B962471985F952144D037 /* Pods-WOWCardStackView_Example.debug.xcconfig */; 513 | buildSettings = { 514 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 515 | INFOPLIST_FILE = WOWCardStackView/Info.plist; 516 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 517 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 518 | MODULE_NAME = ExampleApp; 519 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 520 | PRODUCT_NAME = "$(TARGET_NAME)"; 521 | SWIFT_VERSION = 3.0; 522 | }; 523 | name = Debug; 524 | }; 525 | 607FACF11AFB9204008FA782 /* Release */ = { 526 | isa = XCBuildConfiguration; 527 | baseConfigurationReference = 30091B23E72D1AB9E49886BF /* Pods-WOWCardStackView_Example.release.xcconfig */; 528 | buildSettings = { 529 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 530 | INFOPLIST_FILE = WOWCardStackView/Info.plist; 531 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 532 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 533 | MODULE_NAME = ExampleApp; 534 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 535 | PRODUCT_NAME = "$(TARGET_NAME)"; 536 | SWIFT_VERSION = 3.0; 537 | }; 538 | name = Release; 539 | }; 540 | 607FACF31AFB9204008FA782 /* Debug */ = { 541 | isa = XCBuildConfiguration; 542 | baseConfigurationReference = 0C60282BA410B7570717C313 /* Pods-WOWCardStackView_Tests.debug.xcconfig */; 543 | buildSettings = { 544 | FRAMEWORK_SEARCH_PATHS = ( 545 | "$(SDKROOT)/Developer/Library/Frameworks", 546 | "$(inherited)", 547 | ); 548 | GCC_PREPROCESSOR_DEFINITIONS = ( 549 | "DEBUG=1", 550 | "$(inherited)", 551 | ); 552 | INFOPLIST_FILE = Tests/Info.plist; 553 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 554 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 555 | PRODUCT_NAME = "$(TARGET_NAME)"; 556 | SWIFT_VERSION = 3.0; 557 | }; 558 | name = Debug; 559 | }; 560 | 607FACF41AFB9204008FA782 /* Release */ = { 561 | isa = XCBuildConfiguration; 562 | baseConfigurationReference = 8076A3CDAB0ADAF509062214 /* Pods-WOWCardStackView_Tests.release.xcconfig */; 563 | buildSettings = { 564 | FRAMEWORK_SEARCH_PATHS = ( 565 | "$(SDKROOT)/Developer/Library/Frameworks", 566 | "$(inherited)", 567 | ); 568 | INFOPLIST_FILE = Tests/Info.plist; 569 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 570 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 571 | PRODUCT_NAME = "$(TARGET_NAME)"; 572 | SWIFT_VERSION = 3.0; 573 | }; 574 | name = Release; 575 | }; 576 | /* End XCBuildConfiguration section */ 577 | 578 | /* Begin XCConfigurationList section */ 579 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "WOWCardStackView" */ = { 580 | isa = XCConfigurationList; 581 | buildConfigurations = ( 582 | 607FACED1AFB9204008FA782 /* Debug */, 583 | 607FACEE1AFB9204008FA782 /* Release */, 584 | ); 585 | defaultConfigurationIsVisible = 0; 586 | defaultConfigurationName = Release; 587 | }; 588 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "WOWCardStackView_Example" */ = { 589 | isa = XCConfigurationList; 590 | buildConfigurations = ( 591 | 607FACF01AFB9204008FA782 /* Debug */, 592 | 607FACF11AFB9204008FA782 /* Release */, 593 | ); 594 | defaultConfigurationIsVisible = 0; 595 | defaultConfigurationName = Release; 596 | }; 597 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "WOWCardStackView_Tests" */ = { 598 | isa = XCConfigurationList; 599 | buildConfigurations = ( 600 | 607FACF31AFB9204008FA782 /* Debug */, 601 | 607FACF41AFB9204008FA782 /* Release */, 602 | ); 603 | defaultConfigurationIsVisible = 0; 604 | defaultConfigurationName = Release; 605 | }; 606 | /* End XCConfigurationList section */ 607 | }; 608 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 609 | } 610 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0BB435974F6502810F53E407F2D79B8A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; }; 11 | 153730E22B89CF870B7C0FB65AC7B0B4 /* CardView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E24D25CD24FDC3F755891A58E14E385 /* CardView.swift */; }; 12 | 3428B6756E7718D8311E82CD72BD61E8 /* Pods-WOWCardStackView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 26DDDE7D77AC66EB40444B1BFD83C4F8 /* Pods-WOWCardStackView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 6FDA8539F923F1C5461FBAF1A5A0A408 /* Pods-WOWCardStackView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A11B87663AD00B131AEFE4ED4189A40B /* Pods-WOWCardStackView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 79F9B2AD0737D3ACA63FE42A082682E4 /* Pods-WOWCardStackView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05B7EC1E7DC486E38E5E5BC54A0CF76B /* Pods-WOWCardStackView_Example-dummy.m */; }; 15 | AC5E8F6A6114354DBA01A5B2F6BEEE50 /* WOWCardStackView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D2DF5BBDAB1BEFC4C179D1A7FA88AA80 /* WOWCardStackView-dummy.m */; }; 16 | B111672F46236884B655D5F75B75FFD0 /* WOWCardStackView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A9918CD32DEA851FACC06D046DA4861E /* WOWCardStackView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | B568E284215C4FA9D6630ED2B067C60E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; }; 18 | BD685FF651A24EF963B76EF1249E1B55 /* CardStackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DA924C3D3AB63911AE5C683DBABB284 /* CardStackView.swift */; }; 19 | FA1E703215F58192865467B2FBB53D20 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; }; 20 | FBB8FE010F28FA389CD8F197041EB894 /* Pods-WOWCardStackView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AE3A655CDF011C2B83B924C5832A135 /* Pods-WOWCardStackView_Tests-dummy.m */; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | 00A13467D86109813BD39BD8FCB68D67 /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = 9D74027CA3A8C170AD5F9D546BD76991; 29 | remoteInfo = WOWCardStackView; 30 | }; 31 | /* End PBXContainerItemProxy section */ 32 | 33 | /* Begin PBXFileReference section */ 34 | 05B7EC1E7DC486E38E5E5BC54A0CF76B /* Pods-WOWCardStackView_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-WOWCardStackView_Example-dummy.m"; sourceTree = ""; }; 35 | 1466140EA31C31051C9BDEFA00AE8207 /* Pods-WOWCardStackView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-WOWCardStackView_Example-acknowledgements.markdown"; sourceTree = ""; }; 36 | 14ABDE3992BE2202BD86EC2B025F4B1A /* WOWCardStackView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = WOWCardStackView.modulemap; sourceTree = ""; }; 37 | 1C13F73529648A056FFCD20C57127D52 /* Pods-WOWCardStackView_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-WOWCardStackView_Example-resources.sh"; sourceTree = ""; }; 38 | 22A2FF2B033BD6636C204D7687A17DD3 /* Pods-WOWCardStackView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-WOWCardStackView_Example.debug.xcconfig"; sourceTree = ""; }; 39 | 26DDDE7D77AC66EB40444B1BFD83C4F8 /* Pods-WOWCardStackView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-WOWCardStackView_Tests-umbrella.h"; sourceTree = ""; }; 40 | 2D53ADE759A4A25C7C6E95AA9BFC73BF /* Pods-WOWCardStackView_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-WOWCardStackView_Tests-frameworks.sh"; sourceTree = ""; }; 41 | 2E24D25CD24FDC3F755891A58E14E385 /* CardView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CardView.swift; sourceTree = ""; }; 42 | 3984ECC5DE65F8D45936099DEF0BD59F /* Pods_WOWCardStackView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_WOWCardStackView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 4E2FC208A1B7AB5ED0584268710E136C /* Pods-WOWCardStackView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-WOWCardStackView_Tests.modulemap"; sourceTree = ""; }; 44 | 5421DB4C1F767329B77186567225347B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 45 | 5702ABE1DE17D25451054AD7494A1EA6 /* Pods-WOWCardStackView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-WOWCardStackView_Tests.release.xcconfig"; sourceTree = ""; }; 46 | 5DA924C3D3AB63911AE5C683DBABB284 /* CardStackView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CardStackView.swift; sourceTree = ""; }; 47 | 62179FD411B77E88ACE9D325272CABD4 /* Pods-WOWCardStackView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-WOWCardStackView_Tests-acknowledgements.plist"; sourceTree = ""; }; 48 | 66318BC0BD11694BB4891658120C0763 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 49 | 6AE3A655CDF011C2B83B924C5832A135 /* Pods-WOWCardStackView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-WOWCardStackView_Tests-dummy.m"; sourceTree = ""; }; 50 | 6B9E9ABE17CD9126708A8FA25B7BDF80 /* Pods-WOWCardStackView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-WOWCardStackView_Tests-acknowledgements.markdown"; sourceTree = ""; }; 51 | 7B121A0973934159B4D64EF067115CCA /* WOWCardStackView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = WOWCardStackView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 52 | 8795E19C4A5D1398D7D3B1480EAD4197 /* Pods-WOWCardStackView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-WOWCardStackView_Tests.debug.xcconfig"; sourceTree = ""; }; 53 | 8C49A1401259FF3131219EC842D59DDC /* Pods-WOWCardStackView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-WOWCardStackView_Example.modulemap"; sourceTree = ""; }; 54 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 55 | A11B87663AD00B131AEFE4ED4189A40B /* Pods-WOWCardStackView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-WOWCardStackView_Example-umbrella.h"; sourceTree = ""; }; 56 | A9918CD32DEA851FACC06D046DA4861E /* WOWCardStackView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "WOWCardStackView-umbrella.h"; sourceTree = ""; }; 57 | B46C793E83EFF12808A2F298DE2A11F2 /* WOWCardStackView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = WOWCardStackView.xcconfig; sourceTree = ""; }; 58 | B7ABEAADF3C676251A16C76A3B48C651 /* Pods-WOWCardStackView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-WOWCardStackView_Example-acknowledgements.plist"; sourceTree = ""; }; 59 | C72781604C787A50EF770433C342FEDB /* WOWCardStackView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "WOWCardStackView-prefix.pch"; sourceTree = ""; }; 60 | C871AEB990713607BDEB616BD753E6F4 /* Pods-WOWCardStackView_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-WOWCardStackView_Tests-resources.sh"; sourceTree = ""; }; 61 | CBAE3F19F0C07E2D471506A43DE77E02 /* Pods-WOWCardStackView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-WOWCardStackView_Example.release.xcconfig"; sourceTree = ""; }; 62 | CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 63 | CD75DCE63977C88932740016A93012B0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 64 | D2DF5BBDAB1BEFC4C179D1A7FA88AA80 /* WOWCardStackView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "WOWCardStackView-dummy.m"; sourceTree = ""; }; 65 | DD297BA9053D8DBA06D12A32AE210383 /* Pods-WOWCardStackView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-WOWCardStackView_Example-frameworks.sh"; sourceTree = ""; }; 66 | F7B49BAFAF226EF6A8BE9D68425474E7 /* Pods_WOWCardStackView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_WOWCardStackView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 67 | /* End PBXFileReference section */ 68 | 69 | /* Begin PBXFrameworksBuildPhase section */ 70 | 60859E5DF81DEDE6B3CEE657EBBBC235 /* Frameworks */ = { 71 | isa = PBXFrameworksBuildPhase; 72 | buildActionMask = 2147483647; 73 | files = ( 74 | FA1E703215F58192865467B2FBB53D20 /* Foundation.framework in Frameworks */, 75 | ); 76 | runOnlyForDeploymentPostprocessing = 0; 77 | }; 78 | 7CA1FD96511B9DAB58618B7C8D897D81 /* Frameworks */ = { 79 | isa = PBXFrameworksBuildPhase; 80 | buildActionMask = 2147483647; 81 | files = ( 82 | 0BB435974F6502810F53E407F2D79B8A /* Foundation.framework in Frameworks */, 83 | ); 84 | runOnlyForDeploymentPostprocessing = 0; 85 | }; 86 | AF62409DFC5569E367621CA0F55A205B /* Frameworks */ = { 87 | isa = PBXFrameworksBuildPhase; 88 | buildActionMask = 2147483647; 89 | files = ( 90 | B568E284215C4FA9D6630ED2B067C60E /* Foundation.framework in Frameworks */, 91 | ); 92 | runOnlyForDeploymentPostprocessing = 0; 93 | }; 94 | /* End PBXFrameworksBuildPhase section */ 95 | 96 | /* Begin PBXGroup section */ 97 | 02379D47028886B8011B1C1AADFF995C /* Pods-WOWCardStackView_Example */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | 66318BC0BD11694BB4891658120C0763 /* Info.plist */, 101 | 8C49A1401259FF3131219EC842D59DDC /* Pods-WOWCardStackView_Example.modulemap */, 102 | 1466140EA31C31051C9BDEFA00AE8207 /* Pods-WOWCardStackView_Example-acknowledgements.markdown */, 103 | B7ABEAADF3C676251A16C76A3B48C651 /* Pods-WOWCardStackView_Example-acknowledgements.plist */, 104 | 05B7EC1E7DC486E38E5E5BC54A0CF76B /* Pods-WOWCardStackView_Example-dummy.m */, 105 | DD297BA9053D8DBA06D12A32AE210383 /* Pods-WOWCardStackView_Example-frameworks.sh */, 106 | 1C13F73529648A056FFCD20C57127D52 /* Pods-WOWCardStackView_Example-resources.sh */, 107 | A11B87663AD00B131AEFE4ED4189A40B /* Pods-WOWCardStackView_Example-umbrella.h */, 108 | 22A2FF2B033BD6636C204D7687A17DD3 /* Pods-WOWCardStackView_Example.debug.xcconfig */, 109 | CBAE3F19F0C07E2D471506A43DE77E02 /* Pods-WOWCardStackView_Example.release.xcconfig */, 110 | ); 111 | name = "Pods-WOWCardStackView_Example"; 112 | path = "Target Support Files/Pods-WOWCardStackView_Example"; 113 | sourceTree = ""; 114 | }; 115 | 2CBD019605C1C40B2A05A855FCDA7EAA /* Products */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 3984ECC5DE65F8D45936099DEF0BD59F /* Pods_WOWCardStackView_Example.framework */, 119 | F7B49BAFAF226EF6A8BE9D68425474E7 /* Pods_WOWCardStackView_Tests.framework */, 120 | 7B121A0973934159B4D64EF067115CCA /* WOWCardStackView.framework */, 121 | ); 122 | name = Products; 123 | sourceTree = ""; 124 | }; 125 | 41F73931E55DFD2E7205E6A2EB4DE0C6 /* WOWCardStackView */ = { 126 | isa = PBXGroup; 127 | children = ( 128 | C4B6FE0B0DB7022D89F1D92185745580 /* Classes */, 129 | ); 130 | path = WOWCardStackView; 131 | sourceTree = ""; 132 | }; 133 | 50DC180CF1861E9927D744AE4384E941 /* Targets Support Files */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 02379D47028886B8011B1C1AADFF995C /* Pods-WOWCardStackView_Example */, 137 | B8A048802DAE692446F4D3604A3113D2 /* Pods-WOWCardStackView_Tests */, 138 | ); 139 | name = "Targets Support Files"; 140 | sourceTree = ""; 141 | }; 142 | 60403069FB31BF9F127461EAF20491CD /* Development Pods */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | E8BE350B64BCE4DBB6FFD61E9D4CFAC3 /* WOWCardStackView */, 146 | ); 147 | name = "Development Pods"; 148 | sourceTree = ""; 149 | }; 150 | 6E739F03C05FE9EEC70ABEF20F66C556 /* Support Files */ = { 151 | isa = PBXGroup; 152 | children = ( 153 | CD75DCE63977C88932740016A93012B0 /* Info.plist */, 154 | 14ABDE3992BE2202BD86EC2B025F4B1A /* WOWCardStackView.modulemap */, 155 | B46C793E83EFF12808A2F298DE2A11F2 /* WOWCardStackView.xcconfig */, 156 | D2DF5BBDAB1BEFC4C179D1A7FA88AA80 /* WOWCardStackView-dummy.m */, 157 | C72781604C787A50EF770433C342FEDB /* WOWCardStackView-prefix.pch */, 158 | A9918CD32DEA851FACC06D046DA4861E /* WOWCardStackView-umbrella.h */, 159 | ); 160 | name = "Support Files"; 161 | path = "Example/Pods/Target Support Files/WOWCardStackView"; 162 | sourceTree = ""; 163 | }; 164 | 7531C8F8DE19F1AA3C8A7AC97A91DC29 /* iOS */ = { 165 | isa = PBXGroup; 166 | children = ( 167 | CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */, 168 | ); 169 | name = iOS; 170 | sourceTree = ""; 171 | }; 172 | 7DB346D0F39D3F0E887471402A8071AB = { 173 | isa = PBXGroup; 174 | children = ( 175 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 176 | 60403069FB31BF9F127461EAF20491CD /* Development Pods */, 177 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 178 | 2CBD019605C1C40B2A05A855FCDA7EAA /* Products */, 179 | 50DC180CF1861E9927D744AE4384E941 /* Targets Support Files */, 180 | ); 181 | sourceTree = ""; 182 | }; 183 | B8A048802DAE692446F4D3604A3113D2 /* Pods-WOWCardStackView_Tests */ = { 184 | isa = PBXGroup; 185 | children = ( 186 | 5421DB4C1F767329B77186567225347B /* Info.plist */, 187 | 4E2FC208A1B7AB5ED0584268710E136C /* Pods-WOWCardStackView_Tests.modulemap */, 188 | 6B9E9ABE17CD9126708A8FA25B7BDF80 /* Pods-WOWCardStackView_Tests-acknowledgements.markdown */, 189 | 62179FD411B77E88ACE9D325272CABD4 /* Pods-WOWCardStackView_Tests-acknowledgements.plist */, 190 | 6AE3A655CDF011C2B83B924C5832A135 /* Pods-WOWCardStackView_Tests-dummy.m */, 191 | 2D53ADE759A4A25C7C6E95AA9BFC73BF /* Pods-WOWCardStackView_Tests-frameworks.sh */, 192 | C871AEB990713607BDEB616BD753E6F4 /* Pods-WOWCardStackView_Tests-resources.sh */, 193 | 26DDDE7D77AC66EB40444B1BFD83C4F8 /* Pods-WOWCardStackView_Tests-umbrella.h */, 194 | 8795E19C4A5D1398D7D3B1480EAD4197 /* Pods-WOWCardStackView_Tests.debug.xcconfig */, 195 | 5702ABE1DE17D25451054AD7494A1EA6 /* Pods-WOWCardStackView_Tests.release.xcconfig */, 196 | ); 197 | name = "Pods-WOWCardStackView_Tests"; 198 | path = "Target Support Files/Pods-WOWCardStackView_Tests"; 199 | sourceTree = ""; 200 | }; 201 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 202 | isa = PBXGroup; 203 | children = ( 204 | 7531C8F8DE19F1AA3C8A7AC97A91DC29 /* iOS */, 205 | ); 206 | name = Frameworks; 207 | sourceTree = ""; 208 | }; 209 | C4B6FE0B0DB7022D89F1D92185745580 /* Classes */ = { 210 | isa = PBXGroup; 211 | children = ( 212 | 5DA924C3D3AB63911AE5C683DBABB284 /* CardStackView.swift */, 213 | 2E24D25CD24FDC3F755891A58E14E385 /* CardView.swift */, 214 | ); 215 | path = Classes; 216 | sourceTree = ""; 217 | }; 218 | E8BE350B64BCE4DBB6FFD61E9D4CFAC3 /* WOWCardStackView */ = { 219 | isa = PBXGroup; 220 | children = ( 221 | 6E739F03C05FE9EEC70ABEF20F66C556 /* Support Files */, 222 | 41F73931E55DFD2E7205E6A2EB4DE0C6 /* WOWCardStackView */, 223 | ); 224 | name = WOWCardStackView; 225 | path = ../..; 226 | sourceTree = ""; 227 | }; 228 | /* End PBXGroup section */ 229 | 230 | /* Begin PBXHeadersBuildPhase section */ 231 | 175E72E557B3ECAA3F239456FE7E9AFA /* Headers */ = { 232 | isa = PBXHeadersBuildPhase; 233 | buildActionMask = 2147483647; 234 | files = ( 235 | B111672F46236884B655D5F75B75FFD0 /* WOWCardStackView-umbrella.h in Headers */, 236 | ); 237 | runOnlyForDeploymentPostprocessing = 0; 238 | }; 239 | 5B2ECC744D7D1D2D076A628699B766FB /* Headers */ = { 240 | isa = PBXHeadersBuildPhase; 241 | buildActionMask = 2147483647; 242 | files = ( 243 | 6FDA8539F923F1C5461FBAF1A5A0A408 /* Pods-WOWCardStackView_Example-umbrella.h in Headers */, 244 | ); 245 | runOnlyForDeploymentPostprocessing = 0; 246 | }; 247 | 77D57797FD23B95CE1415DB0A0EAAA86 /* Headers */ = { 248 | isa = PBXHeadersBuildPhase; 249 | buildActionMask = 2147483647; 250 | files = ( 251 | 3428B6756E7718D8311E82CD72BD61E8 /* Pods-WOWCardStackView_Tests-umbrella.h in Headers */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | /* End PBXHeadersBuildPhase section */ 256 | 257 | /* Begin PBXNativeTarget section */ 258 | 8BE3FE775817C9270B0C59CC7D743A13 /* Pods-WOWCardStackView_Example */ = { 259 | isa = PBXNativeTarget; 260 | buildConfigurationList = 28CF0683DE47A27C87D76696A66C21D8 /* Build configuration list for PBXNativeTarget "Pods-WOWCardStackView_Example" */; 261 | buildPhases = ( 262 | 5DCE5C7760193F402A27EE3F83CDC250 /* Sources */, 263 | 60859E5DF81DEDE6B3CEE657EBBBC235 /* Frameworks */, 264 | 5B2ECC744D7D1D2D076A628699B766FB /* Headers */, 265 | ); 266 | buildRules = ( 267 | ); 268 | dependencies = ( 269 | 48093CE1A9A30FD6450B68929ADB571B /* PBXTargetDependency */, 270 | ); 271 | name = "Pods-WOWCardStackView_Example"; 272 | productName = "Pods-WOWCardStackView_Example"; 273 | productReference = 3984ECC5DE65F8D45936099DEF0BD59F /* Pods_WOWCardStackView_Example.framework */; 274 | productType = "com.apple.product-type.framework"; 275 | }; 276 | 9D74027CA3A8C170AD5F9D546BD76991 /* WOWCardStackView */ = { 277 | isa = PBXNativeTarget; 278 | buildConfigurationList = 7A0F269BE769CF88F4292BE8D295046C /* Build configuration list for PBXNativeTarget "WOWCardStackView" */; 279 | buildPhases = ( 280 | ED384C2CE2F1CDB7C8644D03DED03F1F /* Sources */, 281 | AF62409DFC5569E367621CA0F55A205B /* Frameworks */, 282 | 175E72E557B3ECAA3F239456FE7E9AFA /* Headers */, 283 | ); 284 | buildRules = ( 285 | ); 286 | dependencies = ( 287 | ); 288 | name = WOWCardStackView; 289 | productName = WOWCardStackView; 290 | productReference = 7B121A0973934159B4D64EF067115CCA /* WOWCardStackView.framework */; 291 | productType = "com.apple.product-type.framework"; 292 | }; 293 | FE0185EB4489C9957334058233DB1C8B /* Pods-WOWCardStackView_Tests */ = { 294 | isa = PBXNativeTarget; 295 | buildConfigurationList = BEF56D506FC757FC813DE9C5B5C5DDB2 /* Build configuration list for PBXNativeTarget "Pods-WOWCardStackView_Tests" */; 296 | buildPhases = ( 297 | 0B11DE8E629CC86422FE6258F7FAA8FD /* Sources */, 298 | 7CA1FD96511B9DAB58618B7C8D897D81 /* Frameworks */, 299 | 77D57797FD23B95CE1415DB0A0EAAA86 /* Headers */, 300 | ); 301 | buildRules = ( 302 | ); 303 | dependencies = ( 304 | ); 305 | name = "Pods-WOWCardStackView_Tests"; 306 | productName = "Pods-WOWCardStackView_Tests"; 307 | productReference = F7B49BAFAF226EF6A8BE9D68425474E7 /* Pods_WOWCardStackView_Tests.framework */; 308 | productType = "com.apple.product-type.framework"; 309 | }; 310 | /* End PBXNativeTarget section */ 311 | 312 | /* Begin PBXProject section */ 313 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 314 | isa = PBXProject; 315 | attributes = { 316 | LastSwiftUpdateCheck = 0730; 317 | LastUpgradeCheck = 0700; 318 | TargetAttributes = { 319 | 9D74027CA3A8C170AD5F9D546BD76991 = { 320 | LastSwiftMigration = 1150; 321 | }; 322 | }; 323 | }; 324 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 325 | compatibilityVersion = "Xcode 3.2"; 326 | developmentRegion = English; 327 | hasScannedForEncodings = 0; 328 | knownRegions = ( 329 | English, 330 | en, 331 | ); 332 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 333 | productRefGroup = 2CBD019605C1C40B2A05A855FCDA7EAA /* Products */; 334 | projectDirPath = ""; 335 | projectRoot = ""; 336 | targets = ( 337 | 8BE3FE775817C9270B0C59CC7D743A13 /* Pods-WOWCardStackView_Example */, 338 | FE0185EB4489C9957334058233DB1C8B /* Pods-WOWCardStackView_Tests */, 339 | 9D74027CA3A8C170AD5F9D546BD76991 /* WOWCardStackView */, 340 | ); 341 | }; 342 | /* End PBXProject section */ 343 | 344 | /* Begin PBXSourcesBuildPhase section */ 345 | 0B11DE8E629CC86422FE6258F7FAA8FD /* Sources */ = { 346 | isa = PBXSourcesBuildPhase; 347 | buildActionMask = 2147483647; 348 | files = ( 349 | FBB8FE010F28FA389CD8F197041EB894 /* Pods-WOWCardStackView_Tests-dummy.m in Sources */, 350 | ); 351 | runOnlyForDeploymentPostprocessing = 0; 352 | }; 353 | 5DCE5C7760193F402A27EE3F83CDC250 /* Sources */ = { 354 | isa = PBXSourcesBuildPhase; 355 | buildActionMask = 2147483647; 356 | files = ( 357 | 79F9B2AD0737D3ACA63FE42A082682E4 /* Pods-WOWCardStackView_Example-dummy.m in Sources */, 358 | ); 359 | runOnlyForDeploymentPostprocessing = 0; 360 | }; 361 | ED384C2CE2F1CDB7C8644D03DED03F1F /* Sources */ = { 362 | isa = PBXSourcesBuildPhase; 363 | buildActionMask = 2147483647; 364 | files = ( 365 | BD685FF651A24EF963B76EF1249E1B55 /* CardStackView.swift in Sources */, 366 | 153730E22B89CF870B7C0FB65AC7B0B4 /* CardView.swift in Sources */, 367 | AC5E8F6A6114354DBA01A5B2F6BEEE50 /* WOWCardStackView-dummy.m in Sources */, 368 | ); 369 | runOnlyForDeploymentPostprocessing = 0; 370 | }; 371 | /* End PBXSourcesBuildPhase section */ 372 | 373 | /* Begin PBXTargetDependency section */ 374 | 48093CE1A9A30FD6450B68929ADB571B /* PBXTargetDependency */ = { 375 | isa = PBXTargetDependency; 376 | name = WOWCardStackView; 377 | target = 9D74027CA3A8C170AD5F9D546BD76991 /* WOWCardStackView */; 378 | targetProxy = 00A13467D86109813BD39BD8FCB68D67 /* PBXContainerItemProxy */; 379 | }; 380 | /* End PBXTargetDependency section */ 381 | 382 | /* Begin XCBuildConfiguration section */ 383 | 4873FC539BF578201EF0FEC32D230C37 /* Debug */ = { 384 | isa = XCBuildConfiguration; 385 | baseConfigurationReference = B46C793E83EFF12808A2F298DE2A11F2 /* WOWCardStackView.xcconfig */; 386 | buildSettings = { 387 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 388 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 389 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 390 | CURRENT_PROJECT_VERSION = 1; 391 | DEBUG_INFORMATION_FORMAT = dwarf; 392 | DEFINES_MODULE = YES; 393 | DYLIB_COMPATIBILITY_VERSION = 1; 394 | DYLIB_CURRENT_VERSION = 1; 395 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 396 | ENABLE_STRICT_OBJC_MSGSEND = YES; 397 | GCC_NO_COMMON_BLOCKS = YES; 398 | GCC_PREFIX_HEADER = "Target Support Files/WOWCardStackView/WOWCardStackView-prefix.pch"; 399 | INFOPLIST_FILE = "Target Support Files/WOWCardStackView/Info.plist"; 400 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 401 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 402 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 403 | MODULEMAP_FILE = "Target Support Files/WOWCardStackView/WOWCardStackView.modulemap"; 404 | MTL_ENABLE_DEBUG_INFO = YES; 405 | PRODUCT_NAME = WOWCardStackView; 406 | SDKROOT = iphoneos; 407 | SKIP_INSTALL = YES; 408 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 409 | SWIFT_VERSION = 5.0; 410 | TARGETED_DEVICE_FAMILY = "1,2"; 411 | VERSIONING_SYSTEM = "apple-generic"; 412 | VERSION_INFO_PREFIX = ""; 413 | }; 414 | name = Debug; 415 | }; 416 | 5D5072C075AA58D50A24233CCFCB23CF /* Debug */ = { 417 | isa = XCBuildConfiguration; 418 | baseConfigurationReference = 22A2FF2B033BD6636C204D7687A17DD3 /* Pods-WOWCardStackView_Example.debug.xcconfig */; 419 | buildSettings = { 420 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 421 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 422 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 423 | CURRENT_PROJECT_VERSION = 1; 424 | DEBUG_INFORMATION_FORMAT = dwarf; 425 | DEFINES_MODULE = YES; 426 | DYLIB_COMPATIBILITY_VERSION = 1; 427 | DYLIB_CURRENT_VERSION = 1; 428 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 429 | ENABLE_STRICT_OBJC_MSGSEND = YES; 430 | GCC_NO_COMMON_BLOCKS = YES; 431 | INFOPLIST_FILE = "Target Support Files/Pods-WOWCardStackView_Example/Info.plist"; 432 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 433 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 434 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 435 | MACH_O_TYPE = staticlib; 436 | MODULEMAP_FILE = "Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example.modulemap"; 437 | MTL_ENABLE_DEBUG_INFO = YES; 438 | OTHER_LDFLAGS = ""; 439 | OTHER_LIBTOOLFLAGS = ""; 440 | PODS_ROOT = "$(SRCROOT)"; 441 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 442 | PRODUCT_NAME = Pods_WOWCardStackView_Example; 443 | SDKROOT = iphoneos; 444 | SKIP_INSTALL = YES; 445 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 446 | TARGETED_DEVICE_FAMILY = "1,2"; 447 | VERSIONING_SYSTEM = "apple-generic"; 448 | VERSION_INFO_PREFIX = ""; 449 | }; 450 | name = Debug; 451 | }; 452 | 8DED8AD26D381A6ACFF202E5217EC498 /* Release */ = { 453 | isa = XCBuildConfiguration; 454 | buildSettings = { 455 | ALWAYS_SEARCH_USER_PATHS = NO; 456 | CLANG_ANALYZER_NONNULL = YES; 457 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 458 | CLANG_CXX_LIBRARY = "libc++"; 459 | CLANG_ENABLE_MODULES = YES; 460 | CLANG_ENABLE_OBJC_ARC = YES; 461 | CLANG_WARN_BOOL_CONVERSION = YES; 462 | CLANG_WARN_CONSTANT_CONVERSION = YES; 463 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 464 | CLANG_WARN_EMPTY_BODY = YES; 465 | CLANG_WARN_ENUM_CONVERSION = YES; 466 | CLANG_WARN_INT_CONVERSION = YES; 467 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 468 | CLANG_WARN_UNREACHABLE_CODE = YES; 469 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 470 | CODE_SIGNING_REQUIRED = NO; 471 | COPY_PHASE_STRIP = YES; 472 | ENABLE_NS_ASSERTIONS = NO; 473 | GCC_C_LANGUAGE_STANDARD = gnu99; 474 | GCC_PREPROCESSOR_DEFINITIONS = ( 475 | "POD_CONFIGURATION_RELEASE=1", 476 | "$(inherited)", 477 | ); 478 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 479 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 480 | GCC_WARN_UNDECLARED_SELECTOR = YES; 481 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 482 | GCC_WARN_UNUSED_FUNCTION = YES; 483 | GCC_WARN_UNUSED_VARIABLE = YES; 484 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 485 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 486 | STRIP_INSTALLED_PRODUCT = NO; 487 | SYMROOT = "${SRCROOT}/../build"; 488 | VALIDATE_PRODUCT = YES; 489 | }; 490 | name = Release; 491 | }; 492 | 9E1E4E48AF2EAB23169E611BF694090A /* Debug */ = { 493 | isa = XCBuildConfiguration; 494 | buildSettings = { 495 | ALWAYS_SEARCH_USER_PATHS = NO; 496 | CLANG_ANALYZER_NONNULL = YES; 497 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 498 | CLANG_CXX_LIBRARY = "libc++"; 499 | CLANG_ENABLE_MODULES = YES; 500 | CLANG_ENABLE_OBJC_ARC = YES; 501 | CLANG_WARN_BOOL_CONVERSION = YES; 502 | CLANG_WARN_CONSTANT_CONVERSION = YES; 503 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 504 | CLANG_WARN_EMPTY_BODY = YES; 505 | CLANG_WARN_ENUM_CONVERSION = YES; 506 | CLANG_WARN_INT_CONVERSION = YES; 507 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 508 | CLANG_WARN_UNREACHABLE_CODE = YES; 509 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 510 | CODE_SIGNING_REQUIRED = NO; 511 | COPY_PHASE_STRIP = NO; 512 | ENABLE_TESTABILITY = YES; 513 | GCC_C_LANGUAGE_STANDARD = gnu99; 514 | GCC_DYNAMIC_NO_PIC = NO; 515 | GCC_OPTIMIZATION_LEVEL = 0; 516 | GCC_PREPROCESSOR_DEFINITIONS = ( 517 | "POD_CONFIGURATION_DEBUG=1", 518 | "DEBUG=1", 519 | "$(inherited)", 520 | ); 521 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 522 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 523 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 524 | GCC_WARN_UNDECLARED_SELECTOR = YES; 525 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 526 | GCC_WARN_UNUSED_FUNCTION = YES; 527 | GCC_WARN_UNUSED_VARIABLE = YES; 528 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 529 | ONLY_ACTIVE_ARCH = YES; 530 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 531 | STRIP_INSTALLED_PRODUCT = NO; 532 | SYMROOT = "${SRCROOT}/../build"; 533 | }; 534 | name = Debug; 535 | }; 536 | A8A519B157E8DC05934623C85CF50EDE /* Release */ = { 537 | isa = XCBuildConfiguration; 538 | baseConfigurationReference = CBAE3F19F0C07E2D471506A43DE77E02 /* Pods-WOWCardStackView_Example.release.xcconfig */; 539 | buildSettings = { 540 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 541 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 542 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 543 | CURRENT_PROJECT_VERSION = 1; 544 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 545 | DEFINES_MODULE = YES; 546 | DYLIB_COMPATIBILITY_VERSION = 1; 547 | DYLIB_CURRENT_VERSION = 1; 548 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 549 | ENABLE_STRICT_OBJC_MSGSEND = YES; 550 | GCC_NO_COMMON_BLOCKS = YES; 551 | INFOPLIST_FILE = "Target Support Files/Pods-WOWCardStackView_Example/Info.plist"; 552 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 553 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 554 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 555 | MACH_O_TYPE = staticlib; 556 | MODULEMAP_FILE = "Target Support Files/Pods-WOWCardStackView_Example/Pods-WOWCardStackView_Example.modulemap"; 557 | MTL_ENABLE_DEBUG_INFO = NO; 558 | OTHER_LDFLAGS = ""; 559 | OTHER_LIBTOOLFLAGS = ""; 560 | PODS_ROOT = "$(SRCROOT)"; 561 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 562 | PRODUCT_NAME = Pods_WOWCardStackView_Example; 563 | SDKROOT = iphoneos; 564 | SKIP_INSTALL = YES; 565 | TARGETED_DEVICE_FAMILY = "1,2"; 566 | VERSIONING_SYSTEM = "apple-generic"; 567 | VERSION_INFO_PREFIX = ""; 568 | }; 569 | name = Release; 570 | }; 571 | B6BAECC13621C68BF41EA43B9F9E99FA /* Debug */ = { 572 | isa = XCBuildConfiguration; 573 | baseConfigurationReference = 8795E19C4A5D1398D7D3B1480EAD4197 /* Pods-WOWCardStackView_Tests.debug.xcconfig */; 574 | buildSettings = { 575 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 576 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 577 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 578 | CURRENT_PROJECT_VERSION = 1; 579 | DEBUG_INFORMATION_FORMAT = dwarf; 580 | DEFINES_MODULE = YES; 581 | DYLIB_COMPATIBILITY_VERSION = 1; 582 | DYLIB_CURRENT_VERSION = 1; 583 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 584 | ENABLE_STRICT_OBJC_MSGSEND = YES; 585 | GCC_NO_COMMON_BLOCKS = YES; 586 | INFOPLIST_FILE = "Target Support Files/Pods-WOWCardStackView_Tests/Info.plist"; 587 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 588 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 589 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 590 | MACH_O_TYPE = staticlib; 591 | MODULEMAP_FILE = "Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests.modulemap"; 592 | MTL_ENABLE_DEBUG_INFO = YES; 593 | OTHER_LDFLAGS = ""; 594 | OTHER_LIBTOOLFLAGS = ""; 595 | PODS_ROOT = "$(SRCROOT)"; 596 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 597 | PRODUCT_NAME = Pods_WOWCardStackView_Tests; 598 | SDKROOT = iphoneos; 599 | SKIP_INSTALL = YES; 600 | TARGETED_DEVICE_FAMILY = "1,2"; 601 | VERSIONING_SYSTEM = "apple-generic"; 602 | VERSION_INFO_PREFIX = ""; 603 | }; 604 | name = Debug; 605 | }; 606 | C85F674B16CC287910069E630E4669B6 /* Release */ = { 607 | isa = XCBuildConfiguration; 608 | baseConfigurationReference = B46C793E83EFF12808A2F298DE2A11F2 /* WOWCardStackView.xcconfig */; 609 | buildSettings = { 610 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 611 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 612 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 613 | CURRENT_PROJECT_VERSION = 1; 614 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 615 | DEFINES_MODULE = YES; 616 | DYLIB_COMPATIBILITY_VERSION = 1; 617 | DYLIB_CURRENT_VERSION = 1; 618 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 619 | ENABLE_STRICT_OBJC_MSGSEND = YES; 620 | GCC_NO_COMMON_BLOCKS = YES; 621 | GCC_PREFIX_HEADER = "Target Support Files/WOWCardStackView/WOWCardStackView-prefix.pch"; 622 | INFOPLIST_FILE = "Target Support Files/WOWCardStackView/Info.plist"; 623 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 624 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 625 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 626 | MODULEMAP_FILE = "Target Support Files/WOWCardStackView/WOWCardStackView.modulemap"; 627 | MTL_ENABLE_DEBUG_INFO = NO; 628 | PRODUCT_NAME = WOWCardStackView; 629 | SDKROOT = iphoneos; 630 | SKIP_INSTALL = YES; 631 | SWIFT_VERSION = 5.0; 632 | TARGETED_DEVICE_FAMILY = "1,2"; 633 | VERSIONING_SYSTEM = "apple-generic"; 634 | VERSION_INFO_PREFIX = ""; 635 | }; 636 | name = Release; 637 | }; 638 | EF7855EA2C1F9259BEA2231E6E63CB47 /* Release */ = { 639 | isa = XCBuildConfiguration; 640 | baseConfigurationReference = 5702ABE1DE17D25451054AD7494A1EA6 /* Pods-WOWCardStackView_Tests.release.xcconfig */; 641 | buildSettings = { 642 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 643 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 644 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 645 | CURRENT_PROJECT_VERSION = 1; 646 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 647 | DEFINES_MODULE = YES; 648 | DYLIB_COMPATIBILITY_VERSION = 1; 649 | DYLIB_CURRENT_VERSION = 1; 650 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 651 | ENABLE_STRICT_OBJC_MSGSEND = YES; 652 | GCC_NO_COMMON_BLOCKS = YES; 653 | INFOPLIST_FILE = "Target Support Files/Pods-WOWCardStackView_Tests/Info.plist"; 654 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 655 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 656 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 657 | MACH_O_TYPE = staticlib; 658 | MODULEMAP_FILE = "Target Support Files/Pods-WOWCardStackView_Tests/Pods-WOWCardStackView_Tests.modulemap"; 659 | MTL_ENABLE_DEBUG_INFO = NO; 660 | OTHER_LDFLAGS = ""; 661 | OTHER_LIBTOOLFLAGS = ""; 662 | PODS_ROOT = "$(SRCROOT)"; 663 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 664 | PRODUCT_NAME = Pods_WOWCardStackView_Tests; 665 | SDKROOT = iphoneos; 666 | SKIP_INSTALL = YES; 667 | TARGETED_DEVICE_FAMILY = "1,2"; 668 | VERSIONING_SYSTEM = "apple-generic"; 669 | VERSION_INFO_PREFIX = ""; 670 | }; 671 | name = Release; 672 | }; 673 | /* End XCBuildConfiguration section */ 674 | 675 | /* Begin XCConfigurationList section */ 676 | 28CF0683DE47A27C87D76696A66C21D8 /* Build configuration list for PBXNativeTarget "Pods-WOWCardStackView_Example" */ = { 677 | isa = XCConfigurationList; 678 | buildConfigurations = ( 679 | 5D5072C075AA58D50A24233CCFCB23CF /* Debug */, 680 | A8A519B157E8DC05934623C85CF50EDE /* Release */, 681 | ); 682 | defaultConfigurationIsVisible = 0; 683 | defaultConfigurationName = Release; 684 | }; 685 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 686 | isa = XCConfigurationList; 687 | buildConfigurations = ( 688 | 9E1E4E48AF2EAB23169E611BF694090A /* Debug */, 689 | 8DED8AD26D381A6ACFF202E5217EC498 /* Release */, 690 | ); 691 | defaultConfigurationIsVisible = 0; 692 | defaultConfigurationName = Release; 693 | }; 694 | 7A0F269BE769CF88F4292BE8D295046C /* Build configuration list for PBXNativeTarget "WOWCardStackView" */ = { 695 | isa = XCConfigurationList; 696 | buildConfigurations = ( 697 | 4873FC539BF578201EF0FEC32D230C37 /* Debug */, 698 | C85F674B16CC287910069E630E4669B6 /* Release */, 699 | ); 700 | defaultConfigurationIsVisible = 0; 701 | defaultConfigurationName = Release; 702 | }; 703 | BEF56D506FC757FC813DE9C5B5C5DDB2 /* Build configuration list for PBXNativeTarget "Pods-WOWCardStackView_Tests" */ = { 704 | isa = XCConfigurationList; 705 | buildConfigurations = ( 706 | B6BAECC13621C68BF41EA43B9F9E99FA /* Debug */, 707 | EF7855EA2C1F9259BEA2231E6E63CB47 /* Release */, 708 | ); 709 | defaultConfigurationIsVisible = 0; 710 | defaultConfigurationName = Release; 711 | }; 712 | /* End XCConfigurationList section */ 713 | }; 714 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 715 | } 716 | --------------------------------------------------------------------------------