├── _Pods.xcodeproj ├── Ripple-screenshot.gif ├── Example ├── Pods │ ├── Target Support Files │ │ ├── Rippleable │ │ │ ├── Rippleable.modulemap │ │ │ ├── Rippleable-dummy.m │ │ │ ├── Rippleable-prefix.pch │ │ │ ├── Rippleable-umbrella.h │ │ │ ├── Rippleable.xcconfig │ │ │ └── Rippleable-Info.plist │ │ ├── Pods-Rippleable_Tests │ │ │ ├── Pods-Rippleable_Tests.modulemap │ │ │ ├── Pods-Rippleable_Tests-acknowledgements.markdown │ │ │ ├── Pods-Rippleable_Tests-dummy.m │ │ │ ├── Pods-Rippleable_Tests-umbrella.h │ │ │ ├── Pods-Rippleable_Tests.debug.xcconfig │ │ │ ├── Pods-Rippleable_Tests.release.xcconfig │ │ │ ├── Pods-Rippleable_Tests-Info.plist │ │ │ └── Pods-Rippleable_Tests-acknowledgements.plist │ │ └── Pods-Rippleable_Example │ │ │ ├── Pods-Rippleable_Example.modulemap │ │ │ ├── Pods-Rippleable_Example-dummy.m │ │ │ ├── Pods-Rippleable_Example-umbrella.h │ │ │ ├── Pods-Rippleable_Example.debug.xcconfig │ │ │ ├── Pods-Rippleable_Example.release.xcconfig │ │ │ ├── Pods-Rippleable_Example-Info.plist │ │ │ ├── Pods-Rippleable_Example-acknowledgements.markdown │ │ │ ├── Pods-Rippleable_Example-acknowledgements.plist │ │ │ └── Pods-Rippleable_Example-frameworks.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── Rippleable.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── Rippleable.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Rippleable-Example.xcscheme │ └── project.pbxproj ├── Rippleable.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Podfile.lock ├── Tests │ ├── Info.plist │ └── Tests.swift └── Rippleable │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── Base.lproj │ ├── Main.storyboard │ └── LaunchScreen.xib │ ├── AppDelegate.swift │ └── ViewController.swift ├── .travis.yml ├── .gitignore ├── LICENSE ├── Rippleable.podspec ├── README.md └── Rippleable ├── RippleableView.swift ├── RippleableButton.swift └── RippleableLayer.swift /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Ripple-screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sesang06/Rippleable/HEAD/Ripple-screenshot.gif -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Rippleable/Rippleable.modulemap: -------------------------------------------------------------------------------- 1 | framework module Rippleable { 2 | umbrella header "Rippleable-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Rippleable/Rippleable-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Rippleable : NSObject 3 | @end 4 | @implementation PodsDummy_Rippleable 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Rippleable_Tests { 2 | umbrella header "Pods-Rippleable_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_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-Rippleable_Example/Pods-Rippleable_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Rippleable_Example { 2 | umbrella header "Pods-Rippleable_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Rippleable_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Rippleable_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '10.0' 2 | 3 | target 'Rippleable_Example' do 4 | use_frameworks! 5 | pod 'Rippleable', :path => '../' 6 | 7 | target 'Rippleable_Tests' do 8 | inherit! :search_paths 9 | 10 | 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /Example/Rippleable.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Rippleable_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Rippleable_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Rippleable/Rippleable-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/Rippleable.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/Rippleable.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Rippleable (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - Rippleable (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | Rippleable: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | Rippleable: a4ecdff72f723c4584d28326d55ea0dd6b13f2cc 13 | 14 | PODFILE CHECKSUM: 2372170aac49a798118e0b68f0315d76b38fc0cb 15 | 16 | COCOAPODS: 1.7.5 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Rippleable (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - Rippleable (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | Rippleable: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | Rippleable: a4ecdff72f723c4584d28326d55ea0dd6b13f2cc 13 | 14 | PODFILE CHECKSUM: 2372170aac49a798118e0b68f0315d76b38fc0cb 15 | 16 | COCOAPODS: 1.7.5 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Rippleable/Rippleable-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 RippleableVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char RippleableVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_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_Rippleable_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_Rippleable_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_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_Rippleable_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_Rippleable_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/Rippleable.xcworkspace -scheme Rippleable-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Rippleable/Rippleable.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Rippleable 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "CoreGraphics" -framework "Foundation" -framework "UIKit" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Rippleable" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Rippleable/Rippleable.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "CoreGraphics" -framework "Foundation" -framework "Rippleable" -framework "UIKit" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Rippleable" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Rippleable/Rippleable.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "CoreGraphics" -framework "Foundation" -framework "Rippleable" -framework "UIKit" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/Rippleable.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Rippleable", 3 | "version": "0.1.0", 4 | "summary": "Simple Material Rippleable Button.", 5 | "description": "A Simple Material Rippleable Button, based by objective-C material-ios design, converting its essential codes into Swift.", 6 | "homepage": "https://github.com/sesang06/Rippleable", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "sesang06": "sesang06@naver.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/sesang06/Rippleable.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "10.0" 20 | }, 21 | "source_files": "Rippleable/**/*", 22 | "frameworks": [ 23 | "UIKit", 24 | "Foundation", 25 | "CoreGraphics" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /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/Pods/Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Rippleable" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Rippleable/Rippleable.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "CoreGraphics" -framework "Foundation" -framework "Rippleable" -framework "UIKit" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Rippleable" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Rippleable/Rippleable.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "CoreGraphics" -framework "Foundation" -framework "Rippleable" -framework "UIKit" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import Rippleable 3 | 4 | class Tests: XCTestCase { 5 | 6 | override func setUp() { 7 | super.setUp() 8 | // Put setup code here. This method is called before the invocation of each test method in the class. 9 | } 10 | 11 | override func tearDown() { 12 | // Put teardown code here. This method is called after the invocation of each test method in the class. 13 | super.tearDown() 14 | } 15 | 16 | func testExample() { 17 | // This is an example of a functional test case. 18 | XCTAssert(true, "Pass") 19 | } 20 | 21 | func testPerformanceExample() { 22 | // This is an example of a performance test case. 23 | self.measure() { 24 | // Put the code you want to measure the time of here. 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Rippleable/Rippleable-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-Rippleable_Tests/Pods-Rippleable_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-Rippleable_Example/Pods-Rippleable_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-Rippleable_Tests/Pods-Rippleable_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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 sesang06 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/Rippleable/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Rippleable.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint Rippleable.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'Rippleable' 11 | s.version = '0.1.0' 12 | s.summary = 'Simple Material Rippleable Button.' 13 | 14 | s.swift_version = '5.0' 15 | s.description = 'A Simple Material Rippleable Button, based by objective-C material-ios design, converting its essential codes into Swift.' 16 | s.homepage = 'https://github.com/sesang06/Rippleable' 17 | s.license = { :type => 'MIT', :file => 'LICENSE' } 18 | s.author = { 'sesang06' => 'sesang06@naver.com' } 19 | s.source = { :git => 'https://github.com/sesang06/Rippleable.git', :tag => s.version.to_s } 20 | # s.social_media_url = 'https://twitter.com/' 21 | 22 | s.ios.deployment_target = '10.0' 23 | 24 | s.source_files = 'Rippleable/**/*' 25 | 26 | 27 | # s.public_header_files = 'Pod/Classes/**/*.h' 28 | s.frameworks = 'UIKit', 'Foundation', 'CoreGraphics' 29 | end 30 | -------------------------------------------------------------------------------- /Example/Rippleable/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/Pods/Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## Rippleable 5 | 6 | Copyright (c) 2019 sesang06 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Rippleable 2 | Ripple-Effecting Button in Swift, Inspired by material ios design 3 | 4 | ![Screenshot](https://github.com/sesang06/Rippleable/blob/master/Ripple-screenshot.gif) 5 | 6 | Exmaple 7 | 8 | ```swift 9 | /// outLined-styled button 10 | let outLinedButton: RippleableButton = { 11 | let button = RippleableButton(type: .outlined) 12 | button.layer.cornerRadius = 5 13 | button.setTitle("Hello World!", for: .normal) 14 | button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 18) 15 | button.primaryColor = .blue 16 | return button 17 | }() 18 | 19 | /// cointained-styled button 20 | let containedButton: RippleableButton = { 21 | let button = RippleableButton(type: .contained) 22 | button.layer.cornerRadius = 5 23 | button.setTitle("Hello World!", for: .normal) 24 | button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 18) 25 | button.primaryColor = .blue 26 | return button 27 | }() 28 | 29 | /// text-styled button 30 | let textButton: RippleableButton = { 31 | let button = RippleableButton(type: .text) 32 | button.layer.cornerRadius = 5 33 | button.setTitle("Hello World!", for: .normal) 34 | button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 18) 35 | button.primaryColor = .blue 36 | return button 37 | }() 38 | ``` 39 | ## Requirements 40 | 41 | Rippleable is written in Xcode 11, Swift 5.0, iOS 10.0 Required. 42 | 43 | ## Installation 44 | 45 | Rippleable is available through Cocoapods. 46 | 47 | ```ruby 48 | pod "Rippleable" 49 | ```` 50 | ## Contribution 51 | 52 | Pull Requests are welcomed. 53 | 54 | ## Author 55 | 56 | sesang06, sesang06@naver.com 57 | 58 | ## License 59 | 60 | Rippleable is available under the MIT license. 61 | -------------------------------------------------------------------------------- /Example/Rippleable/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 | -------------------------------------------------------------------------------- /Rippleable/RippleableView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RippleView.swift 3 | // Rippleable 4 | // 5 | // Created by 조세상 on 2019/12/24. 6 | // Copyright © 2019 조세상. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | open class RippleView: UIView { 12 | 13 | 14 | 15 | public var rippleLayer: RippleLayer? 16 | 17 | public var rippleFillColor: UIColor? 18 | 19 | public override init(frame: CGRect) { 20 | super.init(frame: frame) 21 | self.clipsToBounds = true 22 | 23 | } 24 | 25 | required public init?(coder: NSCoder) { 26 | fatalError("init(coder:) has not been implemented") 27 | } 28 | 29 | 30 | open override func touchesBegan(_ touches: Set, with event: UIEvent?) { 31 | super.touchesBegan(touches, with: event) 32 | let rippleLayer = RippleLayer() 33 | rippleLayer.frame = self.frame 34 | rippleLayer.fillColor = self.rippleFillColor?.cgColor 35 | self.layer.addSublayer(rippleLayer) 36 | 37 | let point = touches.first?.location(in: self) ?? .zero 38 | 39 | rippleLayer.hitEffect(point: point) 40 | self.rippleLayer?.fadeOutIfComplete = true 41 | self.rippleLayer = rippleLayer 42 | } 43 | 44 | open override func touchesEnded(_ touches: Set, with event: UIEvent?) { 45 | super.touchesEnded(touches, with: event) 46 | self.fadeOutRipple() 47 | } 48 | 49 | 50 | open override func touchesMoved(_ touches: Set, with event: UIEvent?) { 51 | super.touchesMoved(touches, with: event) 52 | if let point = touches.first?.location(in: self) { 53 | 54 | if self.point(inside: point, with: event) { 55 | 56 | } else { 57 | self.fadeOutRipple() 58 | } 59 | } 60 | } 61 | 62 | private func fadeOutRipple() { 63 | guard let rippleLayer = self.rippleLayer else { return } 64 | if rippleLayer.isAnimating { 65 | rippleLayer.fadeOutIfComplete = true 66 | } else { 67 | rippleLayer.fadeOutEffect() 68 | } 69 | 70 | } 71 | 72 | open override func touchesCancelled(_ touches: Set, with event: UIEvent?) { 73 | super.touchesCancelled(touches, with: event) 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /Example/Rippleable/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Rippleable 4 | // 5 | // Created by sesang06 on 12/23/2019. 6 | // Copyright (c) 2019 sesang06. 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 throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2019 sesang06 <sesang06@naver.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 | Rippleable 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/Rippleable/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // Rippleable 4 | // 5 | // Created by sesang06 on 12/23/2019. 6 | // Copyright (c) 2019 sesang06. All rights reserved. 7 | // 8 | 9 | import Rippleable 10 | import UIKit 11 | 12 | class ViewController: UIViewController { 13 | 14 | /// outLined-styled button 15 | let outLinedButton: RippleableButton = { 16 | let button = RippleableButton(type: .outlined) 17 | button.layer.cornerRadius = 5 18 | button.setTitle("Hello World!", for: .normal) 19 | button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 18) 20 | button.primaryColor = .blue 21 | return button 22 | }() 23 | 24 | /// cointained-styled button 25 | let containedButton: RippleableButton = { 26 | let button = RippleableButton(type: .contained) 27 | button.layer.cornerRadius = 5 28 | button.setTitle("Hello World!", for: .normal) 29 | button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 18) 30 | button.primaryColor = .blue 31 | return button 32 | }() 33 | 34 | /// text-styled button 35 | let textButton: RippleableButton = { 36 | let button = RippleableButton(type: .text) 37 | button.layer.cornerRadius = 5 38 | button.setTitle("Hello World!", for: .normal) 39 | button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 18) 40 | button.primaryColor = .blue 41 | return button 42 | }() 43 | 44 | let container: UIStackView = { 45 | let stackView = UIStackView() 46 | stackView.distribution = .fill 47 | stackView.alignment = .fill 48 | stackView.spacing = 20 49 | stackView.axis = .vertical 50 | return stackView 51 | }() 52 | 53 | override func viewDidLoad() { 54 | super.viewDidLoad() 55 | 56 | self.view.addSubview(self.container) 57 | self.container.addArrangedSubview(self.outLinedButton) 58 | self.container.addArrangedSubview(self.containedButton) 59 | self.container.addArrangedSubview(self.textButton) 60 | 61 | self.container.translatesAutoresizingMaskIntoConstraints = false 62 | self.container.centerYAnchor.constraint(equalTo: self.view.centerYAnchor).isActive = true 63 | self.container.centerXAnchor.constraint(equalTo: self.view.centerXAnchor).isActive = true 64 | 65 | [self.outLinedButton, self.containedButton, self.textButton].forEach { button in 66 | button.translatesAutoresizingMaskIntoConstraints = false 67 | button.heightAnchor.constraint(equalToConstant: 50).isActive = true 68 | button.widthAnchor.constraint(equalToConstant: 140).isActive = true 69 | } 70 | 71 | } 72 | } 73 | 74 | -------------------------------------------------------------------------------- /Rippleable/RippleableButton.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RippleableButton.swift 3 | // Rippleable 4 | // 5 | // Created by 조세상 on 2019/12/02. 6 | // Copyright © 2019 조세상. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import UIKit 11 | import CoreGraphics 12 | 13 | 14 | public enum RippleableType { 15 | case contained 16 | case outlined 17 | case text 18 | } 19 | 20 | 21 | open class RippleableButton: UIButton { 22 | 23 | public let rippleableView = RippleView() 24 | 25 | public var type: RippleableType? { 26 | didSet { 27 | self.setupType() 28 | } 29 | } 30 | 31 | public var primaryColor: UIColor? { 32 | didSet { 33 | self.setupType() 34 | } 35 | } 36 | 37 | private var observation: NSKeyValueObservation? 38 | 39 | 40 | public convenience init(type: RippleableType, frame: CGRect) { 41 | self.init(frame: frame) 42 | self.type = type 43 | } 44 | 45 | public convenience init(type: RippleableType) { 46 | self.init(frame: .zero) 47 | self.type = type 48 | } 49 | 50 | public override init(frame: CGRect) { 51 | super.init(frame: frame) 52 | self.setupRipple() 53 | } 54 | 55 | 56 | private func setupRipple() { 57 | self.addSubview(self.rippleableView) 58 | 59 | if #available(iOS 9.0, *) { 60 | self.rippleableView.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true 61 | self.rippleableView.translatesAutoresizingMaskIntoConstraints = false 62 | self.rippleableView.topAnchor.constraint(equalTo: self.topAnchor).isActive = true 63 | self.rippleableView.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true 64 | self.rippleableView.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true 65 | 66 | } else { 67 | // Fallback on earlier versions 68 | } 69 | 70 | self.rippleableView.clipsToBounds = true 71 | 72 | self.observation = self.observe( 73 | \.layer.cornerRadius, 74 | options: [.initial, .old, .new] 75 | ) { (button, change) in 76 | guard let newCornerRadius = change.newValue else { 77 | return 78 | } 79 | button.rippleableView.layer.cornerRadius = newCornerRadius 80 | } 81 | } 82 | 83 | 84 | private func setupType() { 85 | guard let type = self.type else { return } 86 | 87 | switch type { 88 | case .outlined: 89 | self.rippleableView.rippleFillColor = self.primaryColor?.withAlphaComponent(0.1) 90 | self.layer.borderColor = self.primaryColor?.cgColor 91 | self.layer.borderWidth = 1 92 | self.setTitleColor(self.primaryColor, for: .normal) 93 | case .contained: 94 | self.rippleableView.rippleFillColor = UIColor.white.withAlphaComponent(0.3) 95 | self.setTitleColor(.white, for: .normal) 96 | self.backgroundColor = self.primaryColor 97 | self.layer.shadowColor = UIColor.black.cgColor 98 | self.layer.shadowOffset = CGSize(width: 0, height: -2) 99 | self.layer.shadowOpacity = 0.2 100 | self.layer.shadowRadius = 6 101 | 102 | case .text: 103 | self.rippleableView.rippleFillColor = self.primaryColor?.withAlphaComponent(0.1) 104 | self.setTitleColor(self.primaryColor, for: .normal) 105 | } 106 | } 107 | 108 | required public init?(coder: NSCoder) { 109 | fatalError("init(coder:) has not been implemented") 110 | } 111 | 112 | } 113 | -------------------------------------------------------------------------------- /Example/Rippleable/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Rippleable/RippleableLayer.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RippleableLayer.swift 3 | // Rippleable 4 | // 5 | // Created by 조세상 on 2019/12/10. 6 | // Copyright © 2019 조세상. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import UIKit 11 | import CoreGraphics 12 | 13 | open class RippleLayer: CAShapeLayer { 14 | 15 | 16 | 17 | static let kExpandRippleBeyondSurface: CGFloat = 10 18 | static let kRippleStartingScale: CGFloat = 0.0 19 | static let kRippleTouchDownDuration: CGFloat = 0.225 20 | static let kRippleTouchUpDuration: CGFloat = 0.15 21 | static let kRippleFadeInDuration: CGFloat = 0.075 22 | static let kRippleFadeOutDuration: CGFloat = 0.075 23 | static let kRippleFadeOutDelay: CGFloat = 0.15 24 | 25 | 26 | private let opacityValue = 1 27 | public var isAnimating: Bool = false 28 | 29 | public var fadeOutIfComplete: Bool = false 30 | 31 | 32 | public override init() { 33 | super.init() 34 | self.zPosition = -1 35 | self.setPath() 36 | } 37 | 38 | 39 | 40 | func setPath() { 41 | let radius: CGFloat = sqrt( 42 | self.bounds.width * self.bounds.width 43 | + 44 | self.bounds.height * self.bounds.height 45 | ) 46 | let ovalRect = CGRect( 47 | x: self.bounds.midX - radius, 48 | y: self.bounds.midY - radius, 49 | width: radius * 2, 50 | height: radius * 2 51 | ) 52 | let path = UIBezierPath.init(ovalIn: ovalRect) 53 | self.path = path.cgPath 54 | self.frame = self.bounds 55 | 56 | self.borderWidth = 0 57 | 58 | } 59 | 60 | 61 | @objc 62 | func hitEffect(point: CGPoint) { 63 | self.setPath() 64 | self.isAnimating = true 65 | 66 | CATransaction.begin() 67 | CATransaction.setCompletionBlock { 68 | self.isAnimating = false 69 | if self.fadeOutIfComplete { 70 | self.fadeOutEffect() 71 | } 72 | } 73 | 74 | let positionAnimation: CAKeyframeAnimation = { 75 | let animation = CAKeyframeAnimation() 76 | 77 | let centerPath: UIBezierPath = { 78 | let path = UIBezierPath() 79 | let startPoint = point 80 | let endPoint = CGPoint(x: self.bounds.midX, y: self.bounds.midY) 81 | path.move(to: startPoint) 82 | path.addLine(to: endPoint) 83 | path.close() 84 | return path 85 | }() 86 | 87 | animation.keyPath = "position" 88 | animation.path = centerPath.cgPath 89 | animation.keyTimes = [0, 1] 90 | animation.values = [0, 1] 91 | animation.timingFunction = CAMediaTimingFunction(controlPoints: 0.4, 0, 0.2, 1) 92 | return animation 93 | }() 94 | 95 | let scaleAnimation: CABasicAnimation = { 96 | let animation = CABasicAnimation(keyPath: "transform.scale") 97 | animation.fromValue = Self.kRippleStartingScale 98 | animation.toValue = 1 99 | animation.timingFunction = CAMediaTimingFunction(controlPoints: 0.4, 0, 0.2, 1) 100 | return animation 101 | }() 102 | 103 | let colorAnimation: CABasicAnimation = { 104 | let animation = CABasicAnimation(keyPath: "opacity") 105 | animation.fromValue = 0 106 | animation.toValue = self.opacityValue 107 | animation.duration = CFTimeInterval(Self.kRippleFadeInDuration) 108 | return animation 109 | }() 110 | 111 | 112 | let group: CAAnimationGroup = { 113 | let group = CAAnimationGroup() 114 | group.duration = 0.5 115 | group.animations = [positionAnimation, scaleAnimation, colorAnimation] 116 | group.duration = CFTimeInterval(Self.kRippleTouchDownDuration) 117 | return group 118 | }() 119 | 120 | self.add(group, forKey: "all") 121 | CATransaction.commit() 122 | 123 | } 124 | 125 | @objc 126 | public func fadeInEffect() { 127 | self.setPath() 128 | CATransaction.begin() 129 | CATransaction.setCompletionBlock { 130 | self.fadeOutEffect() 131 | } 132 | 133 | let colorAnimation = CABasicAnimation(keyPath: "opacity") 134 | colorAnimation.fromValue = 0 135 | colorAnimation.toValue = 1 136 | colorAnimation.isRemovedOnCompletion = false 137 | self.add(colorAnimation, forKey: "fadeIn") 138 | CATransaction.commit() 139 | } 140 | 141 | @objc 142 | public func fadeOutEffect() { 143 | CATransaction.begin() 144 | 145 | CATransaction.setCompletionBlock { 146 | self.removeFromSuperlayer() 147 | } 148 | 149 | let colorAnimation = CABasicAnimation(keyPath: "opacity") 150 | colorAnimation.fromValue = self.opacityValue 151 | colorAnimation.toValue = 0 152 | colorAnimation.duration = CFTimeInterval(Self.kRippleFadeOutDuration) 153 | self.add(colorAnimation, forKey: "fadeIn") 154 | CATransaction.commit() 155 | 156 | } 157 | 158 | 159 | required public init?(coder: NSCoder) { 160 | fatalError("init(coder:) has not been implemented") 161 | } 162 | } 163 | -------------------------------------------------------------------------------- /Example/Rippleable.xcodeproj/xcshareddata/xcschemes/Rippleable-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 45 | 46 | 48 | 54 | 55 | 56 | 57 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 80 | 82 | 88 | 89 | 90 | 91 | 92 | 93 | 99 | 101 | 107 | 108 | 109 | 110 | 112 | 113 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | 23 | # Used as a return value for each invocation of `strip_invalid_archs` function. 24 | STRIP_BINARY_RETVAL=0 25 | 26 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 27 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 28 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 29 | 30 | # Copies and strips a vendored framework 31 | install_framework() 32 | { 33 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 34 | local source="${BUILT_PRODUCTS_DIR}/$1" 35 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 36 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 37 | elif [ -r "$1" ]; then 38 | local source="$1" 39 | fi 40 | 41 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 42 | 43 | if [ -L "${source}" ]; then 44 | echo "Symlinked..." 45 | source="$(readlink "${source}")" 46 | fi 47 | 48 | # Use filter instead of exclude so missing patterns don't throw errors. 49 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 51 | 52 | local basename 53 | basename="$(basename -s .framework "$1")" 54 | binary="${destination}/${basename}.framework/${basename}" 55 | 56 | if ! [ -r "$binary" ]; then 57 | binary="${destination}/${basename}" 58 | elif [ -L "${binary}" ]; then 59 | echo "Destination binary is symlinked..." 60 | dirname="$(dirname "${binary}")" 61 | binary="${dirname}/$(readlink "${binary}")" 62 | fi 63 | 64 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 65 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 66 | strip_invalid_archs "$binary" 67 | fi 68 | 69 | # Resign the code if required by the build settings to avoid unstable apps 70 | code_sign_if_enabled "${destination}/$(basename "$1")" 71 | 72 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 73 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 74 | local swift_runtime_libs 75 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 76 | for lib in $swift_runtime_libs; do 77 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 78 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 79 | code_sign_if_enabled "${destination}/${lib}" 80 | done 81 | fi 82 | } 83 | 84 | # Copies and strips a vendored dSYM 85 | install_dsym() { 86 | local source="$1" 87 | if [ -r "$source" ]; then 88 | # Copy the dSYM into a the targets temp dir. 89 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 90 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 91 | 92 | local basename 93 | basename="$(basename -s .framework.dSYM "$source")" 94 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 95 | 96 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 97 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 98 | strip_invalid_archs "$binary" 99 | fi 100 | 101 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 102 | # Move the stripped file into its final destination. 103 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 104 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 105 | else 106 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 107 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 108 | fi 109 | fi 110 | } 111 | 112 | # Copies the bcsymbolmap files of a vendored framework 113 | install_bcsymbolmap() { 114 | local bcsymbolmap_path="$1" 115 | local destination="${BUILT_PRODUCTS_DIR}" 116 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" 117 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 118 | } 119 | 120 | # Signs a framework with the provided identity 121 | code_sign_if_enabled() { 122 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 123 | # Use the current code_sign_identity 124 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 125 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 126 | 127 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 128 | code_sign_cmd="$code_sign_cmd &" 129 | fi 130 | echo "$code_sign_cmd" 131 | eval "$code_sign_cmd" 132 | fi 133 | } 134 | 135 | # Strip invalid architectures 136 | strip_invalid_archs() { 137 | binary="$1" 138 | # Get architectures for current target binary 139 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 140 | # Intersect them with the architectures we are building for 141 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 142 | # If there are no archs supported by this binary then warn the user 143 | if [[ -z "$intersected_archs" ]]; then 144 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 145 | STRIP_BINARY_RETVAL=0 146 | return 147 | fi 148 | stripped="" 149 | for arch in $binary_archs; do 150 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 151 | # Strip non-valid architectures in-place 152 | lipo -remove "$arch" -output "$binary" "$binary" 153 | stripped="$stripped $arch" 154 | fi 155 | done 156 | if [[ "$stripped" ]]; then 157 | echo "Stripped $binary of architectures:$stripped" 158 | fi 159 | STRIP_BINARY_RETVAL=1 160 | } 161 | 162 | 163 | if [[ "$CONFIGURATION" == "Debug" ]]; then 164 | install_framework "${BUILT_PRODUCTS_DIR}/Rippleable/Rippleable.framework" 165 | fi 166 | if [[ "$CONFIGURATION" == "Release" ]]; then 167 | install_framework "${BUILT_PRODUCTS_DIR}/Rippleable/Rippleable.framework" 168 | fi 169 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 170 | wait 171 | fi 172 | -------------------------------------------------------------------------------- /Example/Rippleable.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 397954600670273CB41987E9 /* Pods_Rippleable_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D9221D55C5D8116A0C36C443 /* Pods_Rippleable_Tests.framework */; }; 11 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 12 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 13 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 14 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 15 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 16 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 17 | BC885F92C2E4106F8488CC2A /* Pods_Rippleable_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D3F86BC2B6D22B574F5409E6 /* Pods_Rippleable_Example.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = Rippleable; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 04D1811D61EC331EDDDCD983 /* Pods-Rippleable_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Rippleable_Tests.release.xcconfig"; path = "Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_Tests.release.xcconfig"; sourceTree = ""; }; 32 | 1DB756ACB9EF9B20FBAD60DD /* Pods-Rippleable_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Rippleable_Example.release.xcconfig"; path = "Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example.release.xcconfig"; sourceTree = ""; }; 33 | 2454D427F3423A35E8FB8ED7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 34 | 5A7E4426116AFE951B67DED5 /* Pods-Rippleable_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Rippleable_Example.debug.xcconfig"; path = "Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example.debug.xcconfig"; sourceTree = ""; }; 35 | 607FACD01AFB9204008FA782 /* Rippleable_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Rippleable_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 36 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 37 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 38 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 39 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 40 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 41 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 42 | 607FACE51AFB9204008FA782 /* Rippleable_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Rippleable_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 44 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 45 | 94EABA328071896CDE815CC7 /* Pods-Rippleable_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Rippleable_Tests.debug.xcconfig"; path = "Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_Tests.debug.xcconfig"; sourceTree = ""; }; 46 | A2C144FE3292CDB204EE9BD4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 47 | D3F86BC2B6D22B574F5409E6 /* Pods_Rippleable_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Rippleable_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | D9221D55C5D8116A0C36C443 /* Pods_Rippleable_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Rippleable_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | F04B5A0EEAD60CC167681036 /* Rippleable.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Rippleable.podspec; path = ../Rippleable.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | BC885F92C2E4106F8488CC2A /* Pods_Rippleable_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | 397954600670273CB41987E9 /* Pods_Rippleable_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 3A9579B8B03F799FCEFC1DE9 /* Pods */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 5A7E4426116AFE951B67DED5 /* Pods-Rippleable_Example.debug.xcconfig */, 76 | 1DB756ACB9EF9B20FBAD60DD /* Pods-Rippleable_Example.release.xcconfig */, 77 | 94EABA328071896CDE815CC7 /* Pods-Rippleable_Tests.debug.xcconfig */, 78 | 04D1811D61EC331EDDDCD983 /* Pods-Rippleable_Tests.release.xcconfig */, 79 | ); 80 | path = Pods; 81 | sourceTree = ""; 82 | }; 83 | 607FACC71AFB9204008FA782 = { 84 | isa = PBXGroup; 85 | children = ( 86 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 87 | 607FACD21AFB9204008FA782 /* Example for Rippleable */, 88 | 607FACE81AFB9204008FA782 /* Tests */, 89 | 607FACD11AFB9204008FA782 /* Products */, 90 | 3A9579B8B03F799FCEFC1DE9 /* Pods */, 91 | 9D70FC3A8B49242345521582 /* Frameworks */, 92 | ); 93 | sourceTree = ""; 94 | }; 95 | 607FACD11AFB9204008FA782 /* Products */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | 607FACD01AFB9204008FA782 /* Rippleable_Example.app */, 99 | 607FACE51AFB9204008FA782 /* Rippleable_Tests.xctest */, 100 | ); 101 | name = Products; 102 | sourceTree = ""; 103 | }; 104 | 607FACD21AFB9204008FA782 /* Example for Rippleable */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 108 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 109 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 110 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 111 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 112 | 607FACD31AFB9204008FA782 /* Supporting Files */, 113 | ); 114 | name = "Example for Rippleable"; 115 | path = Rippleable; 116 | sourceTree = ""; 117 | }; 118 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 607FACD41AFB9204008FA782 /* Info.plist */, 122 | ); 123 | name = "Supporting Files"; 124 | sourceTree = ""; 125 | }; 126 | 607FACE81AFB9204008FA782 /* Tests */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 130 | 607FACE91AFB9204008FA782 /* Supporting Files */, 131 | ); 132 | path = Tests; 133 | sourceTree = ""; 134 | }; 135 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 607FACEA1AFB9204008FA782 /* Info.plist */, 139 | ); 140 | name = "Supporting Files"; 141 | sourceTree = ""; 142 | }; 143 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | F04B5A0EEAD60CC167681036 /* Rippleable.podspec */, 147 | A2C144FE3292CDB204EE9BD4 /* README.md */, 148 | 2454D427F3423A35E8FB8ED7 /* LICENSE */, 149 | ); 150 | name = "Podspec Metadata"; 151 | sourceTree = ""; 152 | }; 153 | 9D70FC3A8B49242345521582 /* Frameworks */ = { 154 | isa = PBXGroup; 155 | children = ( 156 | D3F86BC2B6D22B574F5409E6 /* Pods_Rippleable_Example.framework */, 157 | D9221D55C5D8116A0C36C443 /* Pods_Rippleable_Tests.framework */, 158 | ); 159 | name = Frameworks; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* Rippleable_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Rippleable_Example" */; 168 | buildPhases = ( 169 | 2880FD74FBA966C0CA2B20F8 /* [CP] Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | F5FCAAAFA9FFDC589292BAEC /* [CP] Embed Pods Frameworks */, 174 | ); 175 | buildRules = ( 176 | ); 177 | dependencies = ( 178 | ); 179 | name = Rippleable_Example; 180 | productName = Rippleable; 181 | productReference = 607FACD01AFB9204008FA782 /* Rippleable_Example.app */; 182 | productType = "com.apple.product-type.application"; 183 | }; 184 | 607FACE41AFB9204008FA782 /* Rippleable_Tests */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Rippleable_Tests" */; 187 | buildPhases = ( 188 | 60D31CBAF53AE3E2268FC5B4 /* [CP] Check Pods Manifest.lock */, 189 | 607FACE11AFB9204008FA782 /* Sources */, 190 | 607FACE21AFB9204008FA782 /* Frameworks */, 191 | 607FACE31AFB9204008FA782 /* Resources */, 192 | ); 193 | buildRules = ( 194 | ); 195 | dependencies = ( 196 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 197 | ); 198 | name = Rippleable_Tests; 199 | productName = Tests; 200 | productReference = 607FACE51AFB9204008FA782 /* Rippleable_Tests.xctest */; 201 | productType = "com.apple.product-type.bundle.unit-test"; 202 | }; 203 | /* End PBXNativeTarget section */ 204 | 205 | /* Begin PBXProject section */ 206 | 607FACC81AFB9204008FA782 /* Project object */ = { 207 | isa = PBXProject; 208 | attributes = { 209 | LastSwiftUpdateCheck = 0830; 210 | LastUpgradeCheck = 0830; 211 | ORGANIZATIONNAME = CocoaPods; 212 | TargetAttributes = { 213 | 607FACCF1AFB9204008FA782 = { 214 | CreatedOnToolsVersion = 6.3.1; 215 | LastSwiftMigration = 0900; 216 | }; 217 | 607FACE41AFB9204008FA782 = { 218 | CreatedOnToolsVersion = 6.3.1; 219 | LastSwiftMigration = 0900; 220 | TestTargetID = 607FACCF1AFB9204008FA782; 221 | }; 222 | }; 223 | }; 224 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "Rippleable" */; 225 | compatibilityVersion = "Xcode 3.2"; 226 | developmentRegion = English; 227 | hasScannedForEncodings = 0; 228 | knownRegions = ( 229 | English, 230 | en, 231 | Base, 232 | ); 233 | mainGroup = 607FACC71AFB9204008FA782; 234 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 235 | projectDirPath = ""; 236 | projectRoot = ""; 237 | targets = ( 238 | 607FACCF1AFB9204008FA782 /* Rippleable_Example */, 239 | 607FACE41AFB9204008FA782 /* Rippleable_Tests */, 240 | ); 241 | }; 242 | /* End PBXProject section */ 243 | 244 | /* Begin PBXResourcesBuildPhase section */ 245 | 607FACCE1AFB9204008FA782 /* Resources */ = { 246 | isa = PBXResourcesBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 250 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 251 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | 607FACE31AFB9204008FA782 /* Resources */ = { 256 | isa = PBXResourcesBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | /* End PBXResourcesBuildPhase section */ 263 | 264 | /* Begin PBXShellScriptBuildPhase section */ 265 | 2880FD74FBA966C0CA2B20F8 /* [CP] Check Pods Manifest.lock */ = { 266 | isa = PBXShellScriptBuildPhase; 267 | buildActionMask = 2147483647; 268 | files = ( 269 | ); 270 | inputFileListPaths = ( 271 | ); 272 | inputPaths = ( 273 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 274 | "${PODS_ROOT}/Manifest.lock", 275 | ); 276 | name = "[CP] Check Pods Manifest.lock"; 277 | outputFileListPaths = ( 278 | ); 279 | outputPaths = ( 280 | "$(DERIVED_FILE_DIR)/Pods-Rippleable_Example-checkManifestLockResult.txt", 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | shellPath = /bin/sh; 284 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 285 | showEnvVarsInLog = 0; 286 | }; 287 | 60D31CBAF53AE3E2268FC5B4 /* [CP] Check Pods Manifest.lock */ = { 288 | isa = PBXShellScriptBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | ); 292 | inputFileListPaths = ( 293 | ); 294 | inputPaths = ( 295 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 296 | "${PODS_ROOT}/Manifest.lock", 297 | ); 298 | name = "[CP] Check Pods Manifest.lock"; 299 | outputFileListPaths = ( 300 | ); 301 | outputPaths = ( 302 | "$(DERIVED_FILE_DIR)/Pods-Rippleable_Tests-checkManifestLockResult.txt", 303 | ); 304 | runOnlyForDeploymentPostprocessing = 0; 305 | shellPath = /bin/sh; 306 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 307 | showEnvVarsInLog = 0; 308 | }; 309 | F5FCAAAFA9FFDC589292BAEC /* [CP] Embed Pods Frameworks */ = { 310 | isa = PBXShellScriptBuildPhase; 311 | buildActionMask = 2147483647; 312 | files = ( 313 | ); 314 | inputPaths = ( 315 | "${PODS_ROOT}/Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example-frameworks.sh", 316 | "${BUILT_PRODUCTS_DIR}/Rippleable/Rippleable.framework", 317 | ); 318 | name = "[CP] Embed Pods Frameworks"; 319 | outputPaths = ( 320 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Rippleable.framework", 321 | ); 322 | runOnlyForDeploymentPostprocessing = 0; 323 | shellPath = /bin/sh; 324 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example-frameworks.sh\"\n"; 325 | showEnvVarsInLog = 0; 326 | }; 327 | /* End PBXShellScriptBuildPhase section */ 328 | 329 | /* Begin PBXSourcesBuildPhase section */ 330 | 607FACCC1AFB9204008FA782 /* Sources */ = { 331 | isa = PBXSourcesBuildPhase; 332 | buildActionMask = 2147483647; 333 | files = ( 334 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 335 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 336 | ); 337 | runOnlyForDeploymentPostprocessing = 0; 338 | }; 339 | 607FACE11AFB9204008FA782 /* Sources */ = { 340 | isa = PBXSourcesBuildPhase; 341 | buildActionMask = 2147483647; 342 | files = ( 343 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 344 | ); 345 | runOnlyForDeploymentPostprocessing = 0; 346 | }; 347 | /* End PBXSourcesBuildPhase section */ 348 | 349 | /* Begin PBXTargetDependency section */ 350 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 351 | isa = PBXTargetDependency; 352 | target = 607FACCF1AFB9204008FA782 /* Rippleable_Example */; 353 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 354 | }; 355 | /* End PBXTargetDependency section */ 356 | 357 | /* Begin PBXVariantGroup section */ 358 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 359 | isa = PBXVariantGroup; 360 | children = ( 361 | 607FACDA1AFB9204008FA782 /* Base */, 362 | ); 363 | name = Main.storyboard; 364 | sourceTree = ""; 365 | }; 366 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 367 | isa = PBXVariantGroup; 368 | children = ( 369 | 607FACDF1AFB9204008FA782 /* Base */, 370 | ); 371 | name = LaunchScreen.xib; 372 | sourceTree = ""; 373 | }; 374 | /* End PBXVariantGroup section */ 375 | 376 | /* Begin XCBuildConfiguration section */ 377 | 607FACED1AFB9204008FA782 /* Debug */ = { 378 | isa = XCBuildConfiguration; 379 | buildSettings = { 380 | ALWAYS_SEARCH_USER_PATHS = NO; 381 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 382 | CLANG_CXX_LIBRARY = "libc++"; 383 | CLANG_ENABLE_MODULES = YES; 384 | CLANG_ENABLE_OBJC_ARC = YES; 385 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 386 | CLANG_WARN_BOOL_CONVERSION = YES; 387 | CLANG_WARN_COMMA = YES; 388 | CLANG_WARN_CONSTANT_CONVERSION = YES; 389 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 390 | CLANG_WARN_EMPTY_BODY = YES; 391 | CLANG_WARN_ENUM_CONVERSION = YES; 392 | CLANG_WARN_INFINITE_RECURSION = YES; 393 | CLANG_WARN_INT_CONVERSION = YES; 394 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 395 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 396 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 397 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 398 | CLANG_WARN_STRICT_PROTOTYPES = YES; 399 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 400 | CLANG_WARN_UNREACHABLE_CODE = YES; 401 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 402 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 403 | COPY_PHASE_STRIP = NO; 404 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 405 | ENABLE_STRICT_OBJC_MSGSEND = YES; 406 | ENABLE_TESTABILITY = YES; 407 | GCC_C_LANGUAGE_STANDARD = gnu99; 408 | GCC_DYNAMIC_NO_PIC = NO; 409 | GCC_NO_COMMON_BLOCKS = YES; 410 | GCC_OPTIMIZATION_LEVEL = 0; 411 | GCC_PREPROCESSOR_DEFINITIONS = ( 412 | "DEBUG=1", 413 | "$(inherited)", 414 | ); 415 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 416 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 417 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 418 | GCC_WARN_UNDECLARED_SELECTOR = YES; 419 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 420 | GCC_WARN_UNUSED_FUNCTION = YES; 421 | GCC_WARN_UNUSED_VARIABLE = YES; 422 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 423 | MTL_ENABLE_DEBUG_INFO = YES; 424 | ONLY_ACTIVE_ARCH = YES; 425 | SDKROOT = iphoneos; 426 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 427 | }; 428 | name = Debug; 429 | }; 430 | 607FACEE1AFB9204008FA782 /* Release */ = { 431 | isa = XCBuildConfiguration; 432 | buildSettings = { 433 | ALWAYS_SEARCH_USER_PATHS = NO; 434 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 435 | CLANG_CXX_LIBRARY = "libc++"; 436 | CLANG_ENABLE_MODULES = YES; 437 | CLANG_ENABLE_OBJC_ARC = YES; 438 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 439 | CLANG_WARN_BOOL_CONVERSION = YES; 440 | CLANG_WARN_COMMA = YES; 441 | CLANG_WARN_CONSTANT_CONVERSION = YES; 442 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 443 | CLANG_WARN_EMPTY_BODY = YES; 444 | CLANG_WARN_ENUM_CONVERSION = YES; 445 | CLANG_WARN_INFINITE_RECURSION = YES; 446 | CLANG_WARN_INT_CONVERSION = YES; 447 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 448 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 449 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 450 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 451 | CLANG_WARN_STRICT_PROTOTYPES = YES; 452 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 453 | CLANG_WARN_UNREACHABLE_CODE = YES; 454 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 455 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 456 | COPY_PHASE_STRIP = NO; 457 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 458 | ENABLE_NS_ASSERTIONS = NO; 459 | ENABLE_STRICT_OBJC_MSGSEND = YES; 460 | GCC_C_LANGUAGE_STANDARD = gnu99; 461 | GCC_NO_COMMON_BLOCKS = YES; 462 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 463 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 464 | GCC_WARN_UNDECLARED_SELECTOR = YES; 465 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 466 | GCC_WARN_UNUSED_FUNCTION = YES; 467 | GCC_WARN_UNUSED_VARIABLE = YES; 468 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 469 | MTL_ENABLE_DEBUG_INFO = NO; 470 | SDKROOT = iphoneos; 471 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 472 | VALIDATE_PRODUCT = YES; 473 | }; 474 | name = Release; 475 | }; 476 | 607FACF01AFB9204008FA782 /* Debug */ = { 477 | isa = XCBuildConfiguration; 478 | baseConfigurationReference = 5A7E4426116AFE951B67DED5 /* Pods-Rippleable_Example.debug.xcconfig */; 479 | buildSettings = { 480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 481 | INFOPLIST_FILE = Rippleable/Info.plist; 482 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 483 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 484 | MODULE_NAME = ExampleApp; 485 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 486 | PRODUCT_NAME = "$(TARGET_NAME)"; 487 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 488 | SWIFT_VERSION = 4.0; 489 | }; 490 | name = Debug; 491 | }; 492 | 607FACF11AFB9204008FA782 /* Release */ = { 493 | isa = XCBuildConfiguration; 494 | baseConfigurationReference = 1DB756ACB9EF9B20FBAD60DD /* Pods-Rippleable_Example.release.xcconfig */; 495 | buildSettings = { 496 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 497 | INFOPLIST_FILE = Rippleable/Info.plist; 498 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 499 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 500 | MODULE_NAME = ExampleApp; 501 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 502 | PRODUCT_NAME = "$(TARGET_NAME)"; 503 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 504 | SWIFT_VERSION = 4.0; 505 | }; 506 | name = Release; 507 | }; 508 | 607FACF31AFB9204008FA782 /* Debug */ = { 509 | isa = XCBuildConfiguration; 510 | baseConfigurationReference = 94EABA328071896CDE815CC7 /* Pods-Rippleable_Tests.debug.xcconfig */; 511 | buildSettings = { 512 | FRAMEWORK_SEARCH_PATHS = ( 513 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 514 | "$(inherited)", 515 | ); 516 | GCC_PREPROCESSOR_DEFINITIONS = ( 517 | "DEBUG=1", 518 | "$(inherited)", 519 | ); 520 | INFOPLIST_FILE = Tests/Info.plist; 521 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 522 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 523 | PRODUCT_NAME = "$(TARGET_NAME)"; 524 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 525 | SWIFT_VERSION = 4.0; 526 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Rippleable_Example.app/Rippleable_Example"; 527 | }; 528 | name = Debug; 529 | }; 530 | 607FACF41AFB9204008FA782 /* Release */ = { 531 | isa = XCBuildConfiguration; 532 | baseConfigurationReference = 04D1811D61EC331EDDDCD983 /* Pods-Rippleable_Tests.release.xcconfig */; 533 | buildSettings = { 534 | FRAMEWORK_SEARCH_PATHS = ( 535 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 536 | "$(inherited)", 537 | ); 538 | INFOPLIST_FILE = Tests/Info.plist; 539 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 540 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 541 | PRODUCT_NAME = "$(TARGET_NAME)"; 542 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 543 | SWIFT_VERSION = 4.0; 544 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Rippleable_Example.app/Rippleable_Example"; 545 | }; 546 | name = Release; 547 | }; 548 | /* End XCBuildConfiguration section */ 549 | 550 | /* Begin XCConfigurationList section */ 551 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "Rippleable" */ = { 552 | isa = XCConfigurationList; 553 | buildConfigurations = ( 554 | 607FACED1AFB9204008FA782 /* Debug */, 555 | 607FACEE1AFB9204008FA782 /* Release */, 556 | ); 557 | defaultConfigurationIsVisible = 0; 558 | defaultConfigurationName = Release; 559 | }; 560 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Rippleable_Example" */ = { 561 | isa = XCConfigurationList; 562 | buildConfigurations = ( 563 | 607FACF01AFB9204008FA782 /* Debug */, 564 | 607FACF11AFB9204008FA782 /* Release */, 565 | ); 566 | defaultConfigurationIsVisible = 0; 567 | defaultConfigurationName = Release; 568 | }; 569 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Rippleable_Tests" */ = { 570 | isa = XCConfigurationList; 571 | buildConfigurations = ( 572 | 607FACF31AFB9204008FA782 /* Debug */, 573 | 607FACF41AFB9204008FA782 /* Release */, 574 | ); 575 | defaultConfigurationIsVisible = 0; 576 | defaultConfigurationName = Release; 577 | }; 578 | /* End XCConfigurationList section */ 579 | }; 580 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 581 | } 582 | -------------------------------------------------------------------------------- /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 | 0B14D3F3B92171BF6A63CD8E70962420 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 276842F3A283EE87124FE6C3EAAFD184 /* CoreGraphics.framework */; }; 11 | 26A3497297623BA6CE5E3623FF0153E5 /* Rippleable-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DEF688D5CF7F1DB8AC0565F6DD5A581 /* Rippleable-dummy.m */; }; 12 | 31CF628294B7E324587FC4D677ADB987 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01BDA658338AD3813D969D7011B56B8D /* UIKit.framework */; }; 13 | 3842A4D3A5CC2D094957FF5A633AB6AA /* RippleableButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEF5C8639B193D6146D7E8DBFF1D8DEF /* RippleableButton.swift */; }; 14 | 4110543CC058CDA4AD67D5A9D65DE6A2 /* RippleableLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C30D316B1F38F21D00FD8747EE768368 /* RippleableLayer.swift */; }; 15 | 4A30668710DF33911A5A7FA995999EF1 /* Rippleable-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B42F002181DC7F1CF07E0A2E60CB73 /* Rippleable-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | 9503EA125BF154B66A8B6C0FF75D3528 /* Pods-Rippleable_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1934BB4DFCC0C644C35DB4ED0C9B7E99 /* Pods-Rippleable_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | 9B16D16E24593325760F3108E0CB8509 /* RippleableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6F46C83E6F42C26016BFB32B86FFAC6 /* RippleableView.swift */; }; 18 | AC612D065BC53657CD020ACE774F0317 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD608BCCF279B1277BB911F33106997F /* Foundation.framework */; }; 19 | AD6634EECA64F169007AE3E99EA87175 /* Pods-Rippleable_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CACBF231BD9090BD0E248FE9DDAF15DA /* Pods-Rippleable_Tests-dummy.m */; }; 20 | BBEC28B719B40D6D49756744D0B106DA /* Pods-Rippleable_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 821194BF03F6102C3CC4CFB8B3BD2BE1 /* Pods-Rippleable_Example-dummy.m */; }; 21 | BC2407AD4FC4C00A9007AD163D42B009 /* Pods-Rippleable_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 662A1768B128E39DB759CE914251755F /* Pods-Rippleable_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22 | D3E9CF73F69FB0CC924DA731A0262400 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD608BCCF279B1277BB911F33106997F /* Foundation.framework */; }; 23 | E971623F6F81E8014F05E49563A73505 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD608BCCF279B1277BB911F33106997F /* Foundation.framework */; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXContainerItemProxy section */ 27 | 469BBF9FB1EDAE82FF84C48E73E696FC /* PBXContainerItemProxy */ = { 28 | isa = PBXContainerItemProxy; 29 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 30 | proxyType = 1; 31 | remoteGlobalIDString = 6DFDDC3503CF187ADB2FC1256B899095; 32 | remoteInfo = Rippleable; 33 | }; 34 | C3F7284E27E911ABE10CDDFB3386C0BC /* PBXContainerItemProxy */ = { 35 | isa = PBXContainerItemProxy; 36 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 37 | proxyType = 1; 38 | remoteGlobalIDString = DEE3E1AE2588E749EA609A7E5115C786; 39 | remoteInfo = "Pods-Rippleable_Example"; 40 | }; 41 | /* End PBXContainerItemProxy section */ 42 | 43 | /* Begin PBXFileReference section */ 44 | 01BDA658338AD3813D969D7011B56B8D /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; 45 | 1469BE93B4974CEBAC954AB611851C90 /* Pods-Rippleable_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Rippleable_Example-acknowledgements.markdown"; sourceTree = ""; }; 46 | 14BADB8B6A25F252EB7DC5178343016B /* Pods-Rippleable_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Rippleable_Tests.debug.xcconfig"; sourceTree = ""; }; 47 | 18E34F01F9C008DB10994E699ED19658 /* Rippleable.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Rippleable.xcconfig; sourceTree = ""; }; 48 | 1934BB4DFCC0C644C35DB4ED0C9B7E99 /* Pods-Rippleable_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Rippleable_Tests-umbrella.h"; sourceTree = ""; }; 49 | 276842F3A283EE87124FE6C3EAAFD184 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; 50 | 3DEF688D5CF7F1DB8AC0565F6DD5A581 /* Rippleable-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Rippleable-dummy.m"; sourceTree = ""; }; 51 | 45D294F819EDEBD1B2AA5E52E1191DA4 /* Pods-Rippleable_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Rippleable_Tests.release.xcconfig"; sourceTree = ""; }; 52 | 5042524863C2EC4FB51B71D27B6C4BAF /* Pods-Rippleable_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Rippleable_Tests.modulemap"; sourceTree = ""; }; 53 | 57BEADB48FB98FA217962A11A97F56D0 /* Rippleable.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Rippleable.modulemap; sourceTree = ""; }; 54 | 61616AA3BED57949A592F9C9313F35E7 /* Pods-Rippleable_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Rippleable_Example.release.xcconfig"; sourceTree = ""; }; 55 | 61B5C56467858C2DD4F667FB2A353B21 /* Pods-Rippleable_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Rippleable_Tests-Info.plist"; sourceTree = ""; }; 56 | 662A1768B128E39DB759CE914251755F /* Pods-Rippleable_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Rippleable_Example-umbrella.h"; sourceTree = ""; }; 57 | 6F8ABF70228ED66756B5DCBB6F471478 /* Pods-Rippleable_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Rippleable_Example-frameworks.sh"; sourceTree = ""; }; 58 | 821194BF03F6102C3CC4CFB8B3BD2BE1 /* Pods-Rippleable_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Rippleable_Example-dummy.m"; sourceTree = ""; }; 59 | 9AB1720B9A13D48932F2907186083344 /* Pods_Rippleable_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Rippleable_Tests.framework; path = "Pods-Rippleable_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | 9D7DD0BC06C543B603AA736AF43FDC26 /* Pods-Rippleable_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Rippleable_Example-Info.plist"; sourceTree = ""; }; 61 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 62 | A2AE589F5B8B5440710588B0830D7BA7 /* Rippleable.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Rippleable.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 63 | AEF5C8639B193D6146D7E8DBFF1D8DEF /* RippleableButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RippleableButton.swift; path = Rippleable/RippleableButton.swift; sourceTree = ""; }; 64 | B655B16D01BA1C19D44E3DF1866FF8FD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 65 | B6F46C83E6F42C26016BFB32B86FFAC6 /* RippleableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RippleableView.swift; path = Rippleable/RippleableView.swift; sourceTree = ""; }; 66 | B7823B6CBBE0A38994390214BF2F3412 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 67 | C30D316B1F38F21D00FD8747EE768368 /* RippleableLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RippleableLayer.swift; path = Rippleable/RippleableLayer.swift; sourceTree = ""; }; 68 | C746D5F87F5487A10547911AD77E2896 /* Rippleable.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Rippleable.framework; path = Rippleable.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 69 | CACBF231BD9090BD0E248FE9DDAF15DA /* Pods-Rippleable_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Rippleable_Tests-dummy.m"; sourceTree = ""; }; 70 | CBBE529B48C1DC70C1AA792AD9988918 /* Pods-Rippleable_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Rippleable_Example-acknowledgements.plist"; sourceTree = ""; }; 71 | CF010BE066E523553B7227643E8C2FC3 /* Pods_Rippleable_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Rippleable_Example.framework; path = "Pods-Rippleable_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 72 | D7B42F002181DC7F1CF07E0A2E60CB73 /* Rippleable-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Rippleable-umbrella.h"; sourceTree = ""; }; 73 | EC5C191C3B2361C86756E1EFB16F6618 /* Rippleable-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Rippleable-Info.plist"; sourceTree = ""; }; 74 | F15E98E083102BB2D4891E658E4385F6 /* Pods-Rippleable_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Rippleable_Example.modulemap"; sourceTree = ""; }; 75 | F4EB5F55108979016D2BCA6B6B508C94 /* Pods-Rippleable_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Rippleable_Tests-acknowledgements.plist"; sourceTree = ""; }; 76 | FB4F3EFEE7C30883D7ECEEBEC445BE39 /* Pods-Rippleable_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Rippleable_Example.debug.xcconfig"; sourceTree = ""; }; 77 | FC1493B54652543FC81B73057CFB89AB /* Rippleable-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Rippleable-prefix.pch"; sourceTree = ""; }; 78 | FCB9444882C092FEF03613085397A44E /* Pods-Rippleable_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Rippleable_Tests-acknowledgements.markdown"; sourceTree = ""; }; 79 | FD608BCCF279B1277BB911F33106997F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 80 | /* End PBXFileReference section */ 81 | 82 | /* Begin PBXFrameworksBuildPhase section */ 83 | 4195103A9322575E684C432FC69AAC1C /* Frameworks */ = { 84 | isa = PBXFrameworksBuildPhase; 85 | buildActionMask = 2147483647; 86 | files = ( 87 | E971623F6F81E8014F05E49563A73505 /* Foundation.framework in Frameworks */, 88 | ); 89 | runOnlyForDeploymentPostprocessing = 0; 90 | }; 91 | 632F7A92025651DC53CC01FF1044711F /* Frameworks */ = { 92 | isa = PBXFrameworksBuildPhase; 93 | buildActionMask = 2147483647; 94 | files = ( 95 | 0B14D3F3B92171BF6A63CD8E70962420 /* CoreGraphics.framework in Frameworks */, 96 | D3E9CF73F69FB0CC924DA731A0262400 /* Foundation.framework in Frameworks */, 97 | 31CF628294B7E324587FC4D677ADB987 /* UIKit.framework in Frameworks */, 98 | ); 99 | runOnlyForDeploymentPostprocessing = 0; 100 | }; 101 | C6A5DF798BBCA793F07624156F69057D /* Frameworks */ = { 102 | isa = PBXFrameworksBuildPhase; 103 | buildActionMask = 2147483647; 104 | files = ( 105 | AC612D065BC53657CD020ACE774F0317 /* Foundation.framework in Frameworks */, 106 | ); 107 | runOnlyForDeploymentPostprocessing = 0; 108 | }; 109 | /* End PBXFrameworksBuildPhase section */ 110 | 111 | /* Begin PBXGroup section */ 112 | 03C5C200A0787E300053CFA8F53CA094 /* Frameworks */ = { 113 | isa = PBXGroup; 114 | children = ( 115 | ABE8076CBFEE71A3B199C34F20F66745 /* iOS */, 116 | ); 117 | name = Frameworks; 118 | sourceTree = ""; 119 | }; 120 | 34549364AA11E36EB648BC29C65F1372 /* Products */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | CF010BE066E523553B7227643E8C2FC3 /* Pods_Rippleable_Example.framework */, 124 | 9AB1720B9A13D48932F2907186083344 /* Pods_Rippleable_Tests.framework */, 125 | C746D5F87F5487A10547911AD77E2896 /* Rippleable.framework */, 126 | ); 127 | name = Products; 128 | sourceTree = ""; 129 | }; 130 | 3D66A872EE81536ED8D07CB6284E666D /* Rippleable */ = { 131 | isa = PBXGroup; 132 | children = ( 133 | AEF5C8639B193D6146D7E8DBFF1D8DEF /* RippleableButton.swift */, 134 | C30D316B1F38F21D00FD8747EE768368 /* RippleableLayer.swift */, 135 | B6F46C83E6F42C26016BFB32B86FFAC6 /* RippleableView.swift */, 136 | E6171BEF7E4E09D4177884A51041BF8F /* Pod */, 137 | FA13837C5ACDF03F4061DEB627E16621 /* Support Files */, 138 | ); 139 | name = Rippleable; 140 | path = ../..; 141 | sourceTree = ""; 142 | }; 143 | 46A076BF13A78A7F9504AB11427647E8 /* Pods-Rippleable_Example */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | F15E98E083102BB2D4891E658E4385F6 /* Pods-Rippleable_Example.modulemap */, 147 | 1469BE93B4974CEBAC954AB611851C90 /* Pods-Rippleable_Example-acknowledgements.markdown */, 148 | CBBE529B48C1DC70C1AA792AD9988918 /* Pods-Rippleable_Example-acknowledgements.plist */, 149 | 821194BF03F6102C3CC4CFB8B3BD2BE1 /* Pods-Rippleable_Example-dummy.m */, 150 | 6F8ABF70228ED66756B5DCBB6F471478 /* Pods-Rippleable_Example-frameworks.sh */, 151 | 9D7DD0BC06C543B603AA736AF43FDC26 /* Pods-Rippleable_Example-Info.plist */, 152 | 662A1768B128E39DB759CE914251755F /* Pods-Rippleable_Example-umbrella.h */, 153 | FB4F3EFEE7C30883D7ECEEBEC445BE39 /* Pods-Rippleable_Example.debug.xcconfig */, 154 | 61616AA3BED57949A592F9C9313F35E7 /* Pods-Rippleable_Example.release.xcconfig */, 155 | ); 156 | name = "Pods-Rippleable_Example"; 157 | path = "Target Support Files/Pods-Rippleable_Example"; 158 | sourceTree = ""; 159 | }; 160 | 4FD2DD566E231E40789EB550EE1A2A98 /* Development Pods */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | 3D66A872EE81536ED8D07CB6284E666D /* Rippleable */, 164 | ); 165 | name = "Development Pods"; 166 | sourceTree = ""; 167 | }; 168 | 7B830D377971F4B26270EFA2208C0C6E /* Pods-Rippleable_Tests */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 5042524863C2EC4FB51B71D27B6C4BAF /* Pods-Rippleable_Tests.modulemap */, 172 | FCB9444882C092FEF03613085397A44E /* Pods-Rippleable_Tests-acknowledgements.markdown */, 173 | F4EB5F55108979016D2BCA6B6B508C94 /* Pods-Rippleable_Tests-acknowledgements.plist */, 174 | CACBF231BD9090BD0E248FE9DDAF15DA /* Pods-Rippleable_Tests-dummy.m */, 175 | 61B5C56467858C2DD4F667FB2A353B21 /* Pods-Rippleable_Tests-Info.plist */, 176 | 1934BB4DFCC0C644C35DB4ED0C9B7E99 /* Pods-Rippleable_Tests-umbrella.h */, 177 | 14BADB8B6A25F252EB7DC5178343016B /* Pods-Rippleable_Tests.debug.xcconfig */, 178 | 45D294F819EDEBD1B2AA5E52E1191DA4 /* Pods-Rippleable_Tests.release.xcconfig */, 179 | ); 180 | name = "Pods-Rippleable_Tests"; 181 | path = "Target Support Files/Pods-Rippleable_Tests"; 182 | sourceTree = ""; 183 | }; 184 | ABE8076CBFEE71A3B199C34F20F66745 /* iOS */ = { 185 | isa = PBXGroup; 186 | children = ( 187 | 276842F3A283EE87124FE6C3EAAFD184 /* CoreGraphics.framework */, 188 | FD608BCCF279B1277BB911F33106997F /* Foundation.framework */, 189 | 01BDA658338AD3813D969D7011B56B8D /* UIKit.framework */, 190 | ); 191 | name = iOS; 192 | sourceTree = ""; 193 | }; 194 | CF1408CF629C7361332E53B88F7BD30C = { 195 | isa = PBXGroup; 196 | children = ( 197 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 198 | 4FD2DD566E231E40789EB550EE1A2A98 /* Development Pods */, 199 | 03C5C200A0787E300053CFA8F53CA094 /* Frameworks */, 200 | 34549364AA11E36EB648BC29C65F1372 /* Products */, 201 | D5A8BEBEE524F7592AB478379D38C63F /* Targets Support Files */, 202 | ); 203 | sourceTree = ""; 204 | }; 205 | D5A8BEBEE524F7592AB478379D38C63F /* Targets Support Files */ = { 206 | isa = PBXGroup; 207 | children = ( 208 | 46A076BF13A78A7F9504AB11427647E8 /* Pods-Rippleable_Example */, 209 | 7B830D377971F4B26270EFA2208C0C6E /* Pods-Rippleable_Tests */, 210 | ); 211 | name = "Targets Support Files"; 212 | sourceTree = ""; 213 | }; 214 | E6171BEF7E4E09D4177884A51041BF8F /* Pod */ = { 215 | isa = PBXGroup; 216 | children = ( 217 | B7823B6CBBE0A38994390214BF2F3412 /* LICENSE */, 218 | B655B16D01BA1C19D44E3DF1866FF8FD /* README.md */, 219 | A2AE589F5B8B5440710588B0830D7BA7 /* Rippleable.podspec */, 220 | ); 221 | name = Pod; 222 | sourceTree = ""; 223 | }; 224 | FA13837C5ACDF03F4061DEB627E16621 /* Support Files */ = { 225 | isa = PBXGroup; 226 | children = ( 227 | 57BEADB48FB98FA217962A11A97F56D0 /* Rippleable.modulemap */, 228 | 18E34F01F9C008DB10994E699ED19658 /* Rippleable.xcconfig */, 229 | 3DEF688D5CF7F1DB8AC0565F6DD5A581 /* Rippleable-dummy.m */, 230 | EC5C191C3B2361C86756E1EFB16F6618 /* Rippleable-Info.plist */, 231 | FC1493B54652543FC81B73057CFB89AB /* Rippleable-prefix.pch */, 232 | D7B42F002181DC7F1CF07E0A2E60CB73 /* Rippleable-umbrella.h */, 233 | ); 234 | name = "Support Files"; 235 | path = "Example/Pods/Target Support Files/Rippleable"; 236 | sourceTree = ""; 237 | }; 238 | /* End PBXGroup section */ 239 | 240 | /* Begin PBXHeadersBuildPhase section */ 241 | 755EE6E96E95B85C0B17DC05496C217E /* Headers */ = { 242 | isa = PBXHeadersBuildPhase; 243 | buildActionMask = 2147483647; 244 | files = ( 245 | 4A30668710DF33911A5A7FA995999EF1 /* Rippleable-umbrella.h in Headers */, 246 | ); 247 | runOnlyForDeploymentPostprocessing = 0; 248 | }; 249 | B2092E62D951A1099CA02C2AED0AE42E /* Headers */ = { 250 | isa = PBXHeadersBuildPhase; 251 | buildActionMask = 2147483647; 252 | files = ( 253 | 9503EA125BF154B66A8B6C0FF75D3528 /* Pods-Rippleable_Tests-umbrella.h in Headers */, 254 | ); 255 | runOnlyForDeploymentPostprocessing = 0; 256 | }; 257 | F030224726FAACCACE74436373B15120 /* Headers */ = { 258 | isa = PBXHeadersBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | BC2407AD4FC4C00A9007AD163D42B009 /* Pods-Rippleable_Example-umbrella.h in Headers */, 262 | ); 263 | runOnlyForDeploymentPostprocessing = 0; 264 | }; 265 | /* End PBXHeadersBuildPhase section */ 266 | 267 | /* Begin PBXNativeTarget section */ 268 | 6DFDDC3503CF187ADB2FC1256B899095 /* Rippleable */ = { 269 | isa = PBXNativeTarget; 270 | buildConfigurationList = 283407E936B67CD34AE2D3FAE7E69F81 /* Build configuration list for PBXNativeTarget "Rippleable" */; 271 | buildPhases = ( 272 | 755EE6E96E95B85C0B17DC05496C217E /* Headers */, 273 | 75645E2E7AF5FB289CD079E6662FCBF4 /* Sources */, 274 | 632F7A92025651DC53CC01FF1044711F /* Frameworks */, 275 | B33FD1E4D0DC22E83DE069DE3463EA50 /* Resources */, 276 | ); 277 | buildRules = ( 278 | ); 279 | dependencies = ( 280 | ); 281 | name = Rippleable; 282 | productName = Rippleable; 283 | productReference = C746D5F87F5487A10547911AD77E2896 /* Rippleable.framework */; 284 | productType = "com.apple.product-type.framework"; 285 | }; 286 | DC4081D8E7D654321454F6BFBE8AA056 /* Pods-Rippleable_Tests */ = { 287 | isa = PBXNativeTarget; 288 | buildConfigurationList = 1B3442125FF3B4A7E74A092C0526CB5A /* Build configuration list for PBXNativeTarget "Pods-Rippleable_Tests" */; 289 | buildPhases = ( 290 | B2092E62D951A1099CA02C2AED0AE42E /* Headers */, 291 | BDABC8ECC917D8927FBB29939ED3820B /* Sources */, 292 | 4195103A9322575E684C432FC69AAC1C /* Frameworks */, 293 | 6967F282D8E8B98DE368BAD521833D75 /* Resources */, 294 | ); 295 | buildRules = ( 296 | ); 297 | dependencies = ( 298 | 5FEC5AD50FD63C64B1D365732B35D4B5 /* PBXTargetDependency */, 299 | ); 300 | name = "Pods-Rippleable_Tests"; 301 | productName = "Pods-Rippleable_Tests"; 302 | productReference = 9AB1720B9A13D48932F2907186083344 /* Pods_Rippleable_Tests.framework */; 303 | productType = "com.apple.product-type.framework"; 304 | }; 305 | DEE3E1AE2588E749EA609A7E5115C786 /* Pods-Rippleable_Example */ = { 306 | isa = PBXNativeTarget; 307 | buildConfigurationList = 4339C0B2818F0EED05127E35EAAD7D3B /* Build configuration list for PBXNativeTarget "Pods-Rippleable_Example" */; 308 | buildPhases = ( 309 | F030224726FAACCACE74436373B15120 /* Headers */, 310 | 5DE4C46C44DC84F43C76E1EC8A0AB977 /* Sources */, 311 | C6A5DF798BBCA793F07624156F69057D /* Frameworks */, 312 | ADE922CF8CC3C13735F24988C555726C /* Resources */, 313 | ); 314 | buildRules = ( 315 | ); 316 | dependencies = ( 317 | 9D2407711735DD1FAA1EDCC7A9A00936 /* PBXTargetDependency */, 318 | ); 319 | name = "Pods-Rippleable_Example"; 320 | productName = "Pods-Rippleable_Example"; 321 | productReference = CF010BE066E523553B7227643E8C2FC3 /* Pods_Rippleable_Example.framework */; 322 | productType = "com.apple.product-type.framework"; 323 | }; 324 | /* End PBXNativeTarget section */ 325 | 326 | /* Begin PBXProject section */ 327 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 328 | isa = PBXProject; 329 | attributes = { 330 | LastSwiftUpdateCheck = 1100; 331 | LastUpgradeCheck = 1100; 332 | }; 333 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 334 | compatibilityVersion = "Xcode 3.2"; 335 | developmentRegion = en; 336 | hasScannedForEncodings = 0; 337 | knownRegions = ( 338 | en, 339 | ); 340 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 341 | productRefGroup = 34549364AA11E36EB648BC29C65F1372 /* Products */; 342 | projectDirPath = ""; 343 | projectRoot = ""; 344 | targets = ( 345 | DEE3E1AE2588E749EA609A7E5115C786 /* Pods-Rippleable_Example */, 346 | DC4081D8E7D654321454F6BFBE8AA056 /* Pods-Rippleable_Tests */, 347 | 6DFDDC3503CF187ADB2FC1256B899095 /* Rippleable */, 348 | ); 349 | }; 350 | /* End PBXProject section */ 351 | 352 | /* Begin PBXResourcesBuildPhase section */ 353 | 6967F282D8E8B98DE368BAD521833D75 /* Resources */ = { 354 | isa = PBXResourcesBuildPhase; 355 | buildActionMask = 2147483647; 356 | files = ( 357 | ); 358 | runOnlyForDeploymentPostprocessing = 0; 359 | }; 360 | ADE922CF8CC3C13735F24988C555726C /* Resources */ = { 361 | isa = PBXResourcesBuildPhase; 362 | buildActionMask = 2147483647; 363 | files = ( 364 | ); 365 | runOnlyForDeploymentPostprocessing = 0; 366 | }; 367 | B33FD1E4D0DC22E83DE069DE3463EA50 /* Resources */ = { 368 | isa = PBXResourcesBuildPhase; 369 | buildActionMask = 2147483647; 370 | files = ( 371 | ); 372 | runOnlyForDeploymentPostprocessing = 0; 373 | }; 374 | /* End PBXResourcesBuildPhase section */ 375 | 376 | /* Begin PBXSourcesBuildPhase section */ 377 | 5DE4C46C44DC84F43C76E1EC8A0AB977 /* Sources */ = { 378 | isa = PBXSourcesBuildPhase; 379 | buildActionMask = 2147483647; 380 | files = ( 381 | BBEC28B719B40D6D49756744D0B106DA /* Pods-Rippleable_Example-dummy.m in Sources */, 382 | ); 383 | runOnlyForDeploymentPostprocessing = 0; 384 | }; 385 | 75645E2E7AF5FB289CD079E6662FCBF4 /* Sources */ = { 386 | isa = PBXSourcesBuildPhase; 387 | buildActionMask = 2147483647; 388 | files = ( 389 | 26A3497297623BA6CE5E3623FF0153E5 /* Rippleable-dummy.m in Sources */, 390 | 3842A4D3A5CC2D094957FF5A633AB6AA /* RippleableButton.swift in Sources */, 391 | 4110543CC058CDA4AD67D5A9D65DE6A2 /* RippleableLayer.swift in Sources */, 392 | 9B16D16E24593325760F3108E0CB8509 /* RippleableView.swift in Sources */, 393 | ); 394 | runOnlyForDeploymentPostprocessing = 0; 395 | }; 396 | BDABC8ECC917D8927FBB29939ED3820B /* Sources */ = { 397 | isa = PBXSourcesBuildPhase; 398 | buildActionMask = 2147483647; 399 | files = ( 400 | AD6634EECA64F169007AE3E99EA87175 /* Pods-Rippleable_Tests-dummy.m in Sources */, 401 | ); 402 | runOnlyForDeploymentPostprocessing = 0; 403 | }; 404 | /* End PBXSourcesBuildPhase section */ 405 | 406 | /* Begin PBXTargetDependency section */ 407 | 5FEC5AD50FD63C64B1D365732B35D4B5 /* PBXTargetDependency */ = { 408 | isa = PBXTargetDependency; 409 | name = "Pods-Rippleable_Example"; 410 | target = DEE3E1AE2588E749EA609A7E5115C786 /* Pods-Rippleable_Example */; 411 | targetProxy = C3F7284E27E911ABE10CDDFB3386C0BC /* PBXContainerItemProxy */; 412 | }; 413 | 9D2407711735DD1FAA1EDCC7A9A00936 /* PBXTargetDependency */ = { 414 | isa = PBXTargetDependency; 415 | name = Rippleable; 416 | target = 6DFDDC3503CF187ADB2FC1256B899095 /* Rippleable */; 417 | targetProxy = 469BBF9FB1EDAE82FF84C48E73E696FC /* PBXContainerItemProxy */; 418 | }; 419 | /* End PBXTargetDependency section */ 420 | 421 | /* Begin XCBuildConfiguration section */ 422 | 196DFA3E4A09A28224918543529A1885 /* Debug */ = { 423 | isa = XCBuildConfiguration; 424 | buildSettings = { 425 | ALWAYS_SEARCH_USER_PATHS = NO; 426 | CLANG_ANALYZER_NONNULL = YES; 427 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 428 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 429 | CLANG_CXX_LIBRARY = "libc++"; 430 | CLANG_ENABLE_MODULES = YES; 431 | CLANG_ENABLE_OBJC_ARC = YES; 432 | CLANG_ENABLE_OBJC_WEAK = YES; 433 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 434 | CLANG_WARN_BOOL_CONVERSION = YES; 435 | CLANG_WARN_COMMA = YES; 436 | CLANG_WARN_CONSTANT_CONVERSION = YES; 437 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 438 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 439 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 440 | CLANG_WARN_EMPTY_BODY = YES; 441 | CLANG_WARN_ENUM_CONVERSION = YES; 442 | CLANG_WARN_INFINITE_RECURSION = YES; 443 | CLANG_WARN_INT_CONVERSION = YES; 444 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 445 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 446 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 447 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 448 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 449 | CLANG_WARN_STRICT_PROTOTYPES = YES; 450 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 451 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 452 | CLANG_WARN_UNREACHABLE_CODE = YES; 453 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 454 | COPY_PHASE_STRIP = NO; 455 | DEBUG_INFORMATION_FORMAT = dwarf; 456 | ENABLE_STRICT_OBJC_MSGSEND = YES; 457 | ENABLE_TESTABILITY = YES; 458 | GCC_C_LANGUAGE_STANDARD = gnu11; 459 | GCC_DYNAMIC_NO_PIC = NO; 460 | GCC_NO_COMMON_BLOCKS = YES; 461 | GCC_OPTIMIZATION_LEVEL = 0; 462 | GCC_PREPROCESSOR_DEFINITIONS = ( 463 | "POD_CONFIGURATION_DEBUG=1", 464 | "DEBUG=1", 465 | "$(inherited)", 466 | ); 467 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 468 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 469 | GCC_WARN_UNDECLARED_SELECTOR = YES; 470 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 471 | GCC_WARN_UNUSED_FUNCTION = YES; 472 | GCC_WARN_UNUSED_VARIABLE = YES; 473 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 474 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 475 | MTL_FAST_MATH = YES; 476 | ONLY_ACTIVE_ARCH = YES; 477 | PRODUCT_NAME = "$(TARGET_NAME)"; 478 | STRIP_INSTALLED_PRODUCT = NO; 479 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 480 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 481 | SWIFT_VERSION = 5.0; 482 | SYMROOT = "${SRCROOT}/../build"; 483 | }; 484 | name = Debug; 485 | }; 486 | 350D1FC5EF67B2718887E63E65DA53A2 /* Debug */ = { 487 | isa = XCBuildConfiguration; 488 | baseConfigurationReference = FB4F3EFEE7C30883D7ECEEBEC445BE39 /* Pods-Rippleable_Example.debug.xcconfig */; 489 | buildSettings = { 490 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 491 | CLANG_ENABLE_OBJC_WEAK = NO; 492 | CODE_SIGN_IDENTITY = ""; 493 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 494 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 495 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 496 | CURRENT_PROJECT_VERSION = 1; 497 | DEFINES_MODULE = YES; 498 | DYLIB_COMPATIBILITY_VERSION = 1; 499 | DYLIB_CURRENT_VERSION = 1; 500 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 501 | INFOPLIST_FILE = "Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example-Info.plist"; 502 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 503 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 504 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 505 | MACH_O_TYPE = staticlib; 506 | MODULEMAP_FILE = "Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example.modulemap"; 507 | OTHER_LDFLAGS = ""; 508 | OTHER_LIBTOOLFLAGS = ""; 509 | PODS_ROOT = "$(SRCROOT)"; 510 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 511 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 512 | SDKROOT = iphoneos; 513 | SKIP_INSTALL = YES; 514 | TARGETED_DEVICE_FAMILY = "1,2"; 515 | VERSIONING_SYSTEM = "apple-generic"; 516 | VERSION_INFO_PREFIX = ""; 517 | }; 518 | name = Debug; 519 | }; 520 | 4E231296463C0287B57CEB52C395B24F /* Release */ = { 521 | isa = XCBuildConfiguration; 522 | baseConfigurationReference = 18E34F01F9C008DB10994E699ED19658 /* Rippleable.xcconfig */; 523 | buildSettings = { 524 | CLANG_ENABLE_OBJC_WEAK = NO; 525 | CODE_SIGN_IDENTITY = ""; 526 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 527 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 528 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 529 | CURRENT_PROJECT_VERSION = 1; 530 | DEFINES_MODULE = YES; 531 | DYLIB_COMPATIBILITY_VERSION = 1; 532 | DYLIB_CURRENT_VERSION = 1; 533 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 534 | GCC_PREFIX_HEADER = "Target Support Files/Rippleable/Rippleable-prefix.pch"; 535 | INFOPLIST_FILE = "Target Support Files/Rippleable/Rippleable-Info.plist"; 536 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 537 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 538 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 539 | MODULEMAP_FILE = "Target Support Files/Rippleable/Rippleable.modulemap"; 540 | PRODUCT_MODULE_NAME = Rippleable; 541 | PRODUCT_NAME = Rippleable; 542 | SDKROOT = iphoneos; 543 | SKIP_INSTALL = YES; 544 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 545 | SWIFT_VERSION = 4.0; 546 | TARGETED_DEVICE_FAMILY = "1,2"; 547 | VALIDATE_PRODUCT = YES; 548 | VERSIONING_SYSTEM = "apple-generic"; 549 | VERSION_INFO_PREFIX = ""; 550 | }; 551 | name = Release; 552 | }; 553 | AA80A3D97AAB2932653555B3D6EF4389 /* Release */ = { 554 | isa = XCBuildConfiguration; 555 | baseConfigurationReference = 45D294F819EDEBD1B2AA5E52E1191DA4 /* Pods-Rippleable_Tests.release.xcconfig */; 556 | buildSettings = { 557 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 558 | CLANG_ENABLE_OBJC_WEAK = NO; 559 | CODE_SIGN_IDENTITY = ""; 560 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 561 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 562 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 563 | CURRENT_PROJECT_VERSION = 1; 564 | DEFINES_MODULE = YES; 565 | DYLIB_COMPATIBILITY_VERSION = 1; 566 | DYLIB_CURRENT_VERSION = 1; 567 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 568 | INFOPLIST_FILE = "Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_Tests-Info.plist"; 569 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 570 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 571 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 572 | MACH_O_TYPE = staticlib; 573 | MODULEMAP_FILE = "Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_Tests.modulemap"; 574 | OTHER_LDFLAGS = ""; 575 | OTHER_LIBTOOLFLAGS = ""; 576 | PODS_ROOT = "$(SRCROOT)"; 577 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 578 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 579 | SDKROOT = iphoneos; 580 | SKIP_INSTALL = YES; 581 | TARGETED_DEVICE_FAMILY = "1,2"; 582 | VALIDATE_PRODUCT = YES; 583 | VERSIONING_SYSTEM = "apple-generic"; 584 | VERSION_INFO_PREFIX = ""; 585 | }; 586 | name = Release; 587 | }; 588 | AD047E04BA017B31315D8B275116ED75 /* Debug */ = { 589 | isa = XCBuildConfiguration; 590 | baseConfigurationReference = 18E34F01F9C008DB10994E699ED19658 /* Rippleable.xcconfig */; 591 | buildSettings = { 592 | CLANG_ENABLE_OBJC_WEAK = NO; 593 | CODE_SIGN_IDENTITY = ""; 594 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 595 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 596 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 597 | CURRENT_PROJECT_VERSION = 1; 598 | DEFINES_MODULE = YES; 599 | DYLIB_COMPATIBILITY_VERSION = 1; 600 | DYLIB_CURRENT_VERSION = 1; 601 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 602 | GCC_PREFIX_HEADER = "Target Support Files/Rippleable/Rippleable-prefix.pch"; 603 | INFOPLIST_FILE = "Target Support Files/Rippleable/Rippleable-Info.plist"; 604 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 605 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 606 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 607 | MODULEMAP_FILE = "Target Support Files/Rippleable/Rippleable.modulemap"; 608 | PRODUCT_MODULE_NAME = Rippleable; 609 | PRODUCT_NAME = Rippleable; 610 | SDKROOT = iphoneos; 611 | SKIP_INSTALL = YES; 612 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 613 | SWIFT_VERSION = 4.0; 614 | TARGETED_DEVICE_FAMILY = "1,2"; 615 | VERSIONING_SYSTEM = "apple-generic"; 616 | VERSION_INFO_PREFIX = ""; 617 | }; 618 | name = Debug; 619 | }; 620 | B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */ = { 621 | isa = XCBuildConfiguration; 622 | buildSettings = { 623 | ALWAYS_SEARCH_USER_PATHS = NO; 624 | CLANG_ANALYZER_NONNULL = YES; 625 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 626 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 627 | CLANG_CXX_LIBRARY = "libc++"; 628 | CLANG_ENABLE_MODULES = YES; 629 | CLANG_ENABLE_OBJC_ARC = YES; 630 | CLANG_ENABLE_OBJC_WEAK = YES; 631 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 632 | CLANG_WARN_BOOL_CONVERSION = YES; 633 | CLANG_WARN_COMMA = YES; 634 | CLANG_WARN_CONSTANT_CONVERSION = YES; 635 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 636 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 637 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 638 | CLANG_WARN_EMPTY_BODY = YES; 639 | CLANG_WARN_ENUM_CONVERSION = YES; 640 | CLANG_WARN_INFINITE_RECURSION = YES; 641 | CLANG_WARN_INT_CONVERSION = YES; 642 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 643 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 644 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 645 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 646 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 647 | CLANG_WARN_STRICT_PROTOTYPES = YES; 648 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 649 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 650 | CLANG_WARN_UNREACHABLE_CODE = YES; 651 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 652 | COPY_PHASE_STRIP = NO; 653 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 654 | ENABLE_NS_ASSERTIONS = NO; 655 | ENABLE_STRICT_OBJC_MSGSEND = YES; 656 | GCC_C_LANGUAGE_STANDARD = gnu11; 657 | GCC_NO_COMMON_BLOCKS = YES; 658 | GCC_PREPROCESSOR_DEFINITIONS = ( 659 | "POD_CONFIGURATION_RELEASE=1", 660 | "$(inherited)", 661 | ); 662 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 663 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 664 | GCC_WARN_UNDECLARED_SELECTOR = YES; 665 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 666 | GCC_WARN_UNUSED_FUNCTION = YES; 667 | GCC_WARN_UNUSED_VARIABLE = YES; 668 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 669 | MTL_ENABLE_DEBUG_INFO = NO; 670 | MTL_FAST_MATH = YES; 671 | PRODUCT_NAME = "$(TARGET_NAME)"; 672 | STRIP_INSTALLED_PRODUCT = NO; 673 | SWIFT_COMPILATION_MODE = wholemodule; 674 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 675 | SWIFT_VERSION = 5.0; 676 | SYMROOT = "${SRCROOT}/../build"; 677 | }; 678 | name = Release; 679 | }; 680 | CB7E10C76A8FE4007A32D4924E4D5CBE /* Debug */ = { 681 | isa = XCBuildConfiguration; 682 | baseConfigurationReference = 14BADB8B6A25F252EB7DC5178343016B /* Pods-Rippleable_Tests.debug.xcconfig */; 683 | buildSettings = { 684 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 685 | CLANG_ENABLE_OBJC_WEAK = NO; 686 | CODE_SIGN_IDENTITY = ""; 687 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 688 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 689 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 690 | CURRENT_PROJECT_VERSION = 1; 691 | DEFINES_MODULE = YES; 692 | DYLIB_COMPATIBILITY_VERSION = 1; 693 | DYLIB_CURRENT_VERSION = 1; 694 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 695 | INFOPLIST_FILE = "Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_Tests-Info.plist"; 696 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 697 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 698 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 699 | MACH_O_TYPE = staticlib; 700 | MODULEMAP_FILE = "Target Support Files/Pods-Rippleable_Tests/Pods-Rippleable_Tests.modulemap"; 701 | OTHER_LDFLAGS = ""; 702 | OTHER_LIBTOOLFLAGS = ""; 703 | PODS_ROOT = "$(SRCROOT)"; 704 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 705 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 706 | SDKROOT = iphoneos; 707 | SKIP_INSTALL = YES; 708 | TARGETED_DEVICE_FAMILY = "1,2"; 709 | VERSIONING_SYSTEM = "apple-generic"; 710 | VERSION_INFO_PREFIX = ""; 711 | }; 712 | name = Debug; 713 | }; 714 | FE1C1F2FB0C82835604718C8066C6A7A /* Release */ = { 715 | isa = XCBuildConfiguration; 716 | baseConfigurationReference = 61616AA3BED57949A592F9C9313F35E7 /* Pods-Rippleable_Example.release.xcconfig */; 717 | buildSettings = { 718 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 719 | CLANG_ENABLE_OBJC_WEAK = NO; 720 | CODE_SIGN_IDENTITY = ""; 721 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 722 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 723 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 724 | CURRENT_PROJECT_VERSION = 1; 725 | DEFINES_MODULE = YES; 726 | DYLIB_COMPATIBILITY_VERSION = 1; 727 | DYLIB_CURRENT_VERSION = 1; 728 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 729 | INFOPLIST_FILE = "Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example-Info.plist"; 730 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 731 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 732 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 733 | MACH_O_TYPE = staticlib; 734 | MODULEMAP_FILE = "Target Support Files/Pods-Rippleable_Example/Pods-Rippleable_Example.modulemap"; 735 | OTHER_LDFLAGS = ""; 736 | OTHER_LIBTOOLFLAGS = ""; 737 | PODS_ROOT = "$(SRCROOT)"; 738 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 739 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 740 | SDKROOT = iphoneos; 741 | SKIP_INSTALL = YES; 742 | TARGETED_DEVICE_FAMILY = "1,2"; 743 | VALIDATE_PRODUCT = YES; 744 | VERSIONING_SYSTEM = "apple-generic"; 745 | VERSION_INFO_PREFIX = ""; 746 | }; 747 | name = Release; 748 | }; 749 | /* End XCBuildConfiguration section */ 750 | 751 | /* Begin XCConfigurationList section */ 752 | 1B3442125FF3B4A7E74A092C0526CB5A /* Build configuration list for PBXNativeTarget "Pods-Rippleable_Tests" */ = { 753 | isa = XCConfigurationList; 754 | buildConfigurations = ( 755 | CB7E10C76A8FE4007A32D4924E4D5CBE /* Debug */, 756 | AA80A3D97AAB2932653555B3D6EF4389 /* Release */, 757 | ); 758 | defaultConfigurationIsVisible = 0; 759 | defaultConfigurationName = Release; 760 | }; 761 | 283407E936B67CD34AE2D3FAE7E69F81 /* Build configuration list for PBXNativeTarget "Rippleable" */ = { 762 | isa = XCConfigurationList; 763 | buildConfigurations = ( 764 | AD047E04BA017B31315D8B275116ED75 /* Debug */, 765 | 4E231296463C0287B57CEB52C395B24F /* Release */, 766 | ); 767 | defaultConfigurationIsVisible = 0; 768 | defaultConfigurationName = Release; 769 | }; 770 | 4339C0B2818F0EED05127E35EAAD7D3B /* Build configuration list for PBXNativeTarget "Pods-Rippleable_Example" */ = { 771 | isa = XCConfigurationList; 772 | buildConfigurations = ( 773 | 350D1FC5EF67B2718887E63E65DA53A2 /* Debug */, 774 | FE1C1F2FB0C82835604718C8066C6A7A /* Release */, 775 | ); 776 | defaultConfigurationIsVisible = 0; 777 | defaultConfigurationName = Release; 778 | }; 779 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 780 | isa = XCConfigurationList; 781 | buildConfigurations = ( 782 | 196DFA3E4A09A28224918543529A1885 /* Debug */, 783 | B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */, 784 | ); 785 | defaultConfigurationIsVisible = 0; 786 | defaultConfigurationName = Release; 787 | }; 788 | /* End XCConfigurationList section */ 789 | }; 790 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 791 | } 792 | --------------------------------------------------------------------------------