├── SVCircularSlider ├── Assets │ └── .gitkeep └── Classes │ └── .gitkeep ├── _Pods.xcodeproj ├── Example ├── Pods │ ├── Target Support Files │ │ ├── SVCircularSlider │ │ │ ├── SVCircularSlider.modulemap │ │ │ ├── SVCircularSlider-dummy.m │ │ │ ├── SVCircularSlider-prefix.pch │ │ │ ├── SVCircularSlider-umbrella.h │ │ │ ├── SVCircularSlider.debug.xcconfig │ │ │ ├── SVCircularSlider.release.xcconfig │ │ │ └── SVCircularSlider-Info.plist │ │ ├── Pods-SVCircularSlider_Tests │ │ │ ├── Pods-SVCircularSlider_Tests-acknowledgements.markdown │ │ │ ├── Pods-SVCircularSlider_Tests.modulemap │ │ │ ├── Pods-SVCircularSlider_Tests-dummy.m │ │ │ ├── Pods-SVCircularSlider_Tests-umbrella.h │ │ │ ├── Pods-SVCircularSlider_Tests.debug.xcconfig │ │ │ ├── Pods-SVCircularSlider_Tests.release.xcconfig │ │ │ ├── Pods-SVCircularSlider_Tests-Info.plist │ │ │ └── Pods-SVCircularSlider_Tests-acknowledgements.plist │ │ └── Pods-SVCircularSlider_Example │ │ │ ├── Pods-SVCircularSlider_Example.modulemap │ │ │ ├── Pods-SVCircularSlider_Example-dummy.m │ │ │ ├── Pods-SVCircularSlider_Example-umbrella.h │ │ │ ├── Pods-SVCircularSlider_Example.debug.xcconfig │ │ │ ├── Pods-SVCircularSlider_Example.release.xcconfig │ │ │ ├── Pods-SVCircularSlider_Example-Info.plist │ │ │ ├── Pods-SVCircularSlider_Example-acknowledgements.markdown │ │ │ ├── Pods-SVCircularSlider_Example-acknowledgements.plist │ │ │ └── Pods-SVCircularSlider_Example-frameworks.sh │ ├── Pods.xcodeproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── project.pbxproj │ ├── Manifest.lock │ └── Local Podspecs │ │ └── SVCircularSlider.podspec.json ├── Podfile ├── SVCircularSlider.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── SVCircularSlider-Example.xcscheme │ └── project.pbxproj ├── SVCircularSlider.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Podfile.lock ├── SVCircularSlider │ ├── ViewController.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── AppDelegate.swift │ └── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard └── Tests │ ├── Info.plist │ └── Tests.swift ├── .travis.yml ├── .gitignore ├── LICENSE ├── README.md ├── SVCircularSlider.podspec └── Source └── CircularSlider.swift /SVCircularSlider/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SVCircularSlider/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SVCircularSlider/SVCircularSlider.modulemap: -------------------------------------------------------------------------------- 1 | framework module SVCircularSlider { 2 | umbrella header "SVCircularSlider-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SVCircularSlider/SVCircularSlider-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SVCircularSlider : NSObject 3 | @end 4 | @implementation PodsDummy_SVCircularSlider 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'SVCircularSlider_Example' do 4 | pod 'SVCircularSlider', :path => '../' 5 | 6 | target 'SVCircularSlider_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_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-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SVCircularSlider_Tests { 2 | umbrella header "Pods-SVCircularSlider_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/SVCircularSlider.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SVCircularSlider_Example { 2 | umbrella header "Pods-SVCircularSlider_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SVCircularSlider_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SVCircularSlider_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SVCircularSlider_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SVCircularSlider_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SVCircularSlider/SVCircularSlider-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/SVCircularSlider.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/SVCircularSlider.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - SVCircularSlider (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - SVCircularSlider (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | SVCircularSlider: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | SVCircularSlider: 9e3cbe9afbdb359e37d6171839f51b8bc58bfb61 13 | 14 | PODFILE CHECKSUM: 85f65c85f68801e9bbd57f468b247186abd9efd7 15 | 16 | COCOAPODS: 1.9.3 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - SVCircularSlider (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - SVCircularSlider (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | SVCircularSlider: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | SVCircularSlider: 9e3cbe9afbdb359e37d6171839f51b8bc58bfb61 13 | 14 | PODFILE CHECKSUM: 85f65c85f68801e9bbd57f468b247186abd9efd7 15 | 16 | COCOAPODS: 1.9.3 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SVCircularSlider/SVCircularSlider-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 SVCircularSliderVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char SVCircularSliderVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_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_SVCircularSlider_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_SVCircularSlider_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_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_SVCircularSlider_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_SVCircularSlider_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SVCircularSlider/SVCircularSlider.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SVCircularSlider 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /.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/SVCircularSlider.xcworkspace -scheme SVCircularSlider-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SVCircularSlider/SVCircularSlider.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SVCircularSlider 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Example/SVCircularSlider/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // SVCircularSlider 4 | // 5 | // Created by stevalsecchi98 on 09/14/2020. 6 | // Copyright (c) 2020 stevalsecchi98. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view, typically from a nib. 16 | } 17 | 18 | override func didReceiveMemoryWarning() { 19 | super.didReceiveMemoryWarning() 20 | // Dispose of any resources that can be recreated. 21 | } 22 | 23 | } 24 | 25 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SVCircularSlider" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SVCircularSlider/SVCircularSlider.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "SVCircularSlider" 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 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SVCircularSlider" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SVCircularSlider/SVCircularSlider.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "SVCircularSlider" 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 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SVCircularSlider.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SVCircularSlider", 3 | "version": "0.1.0", 4 | "summary": "A short description of SVCircularSlider.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/stevalsecchi98/SVCircularSlider", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "stevalsecchi98": "stefano.valsecchi@vidiemme.lan" 13 | }, 14 | "source": { 15 | "git": "https://github.com/stevalsecchi98/SVCircularSlider.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "SVCircularSlider/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /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-SVCircularSlider_Example/Pods-SVCircularSlider_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SVCircularSlider" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SVCircularSlider/SVCircularSlider.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "SVCircularSlider" 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 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SVCircularSlider" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SVCircularSlider/SVCircularSlider.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "SVCircularSlider" 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 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import SVCircularSlider 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/SVCircularSlider/SVCircularSlider-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-SVCircularSlider_Example/Pods-SVCircularSlider_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-SVCircularSlider_Tests/Pods-SVCircularSlider_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-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/SVCircularSlider/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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 stevalsecchi98 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/SVCircularSlider/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-SVCircularSlider_Example/Pods-SVCircularSlider_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## SVCircularSlider 5 | 6 | Copyright (c) 2020 stevalsecchi98 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 | # SVCircularSlider 2 | 3 | [![CI Status](https://img.shields.io/travis/stevalsecchi98/SVCircularSlider.svg?style=flat)](https://travis-ci.org/stevalsecchi98/SVCircularSlider) 4 | [![Version](https://img.shields.io/cocoapods/v/SVCircularSlider.svg?style=flat)](https://cocoapods.org/pods/SVCircularSlider) 5 | [![License](https://img.shields.io/cocoapods/l/SVCircularSlider.svg?style=flat)](https://cocoapods.org/pods/SVCircularSlider) 6 | [![Platform](https://img.shields.io/cocoapods/p/SVCircularSlider.svg?style=flat)](https://cocoapods.org/pods/SVCircularSlider) 7 | 8 | Customizable and Interactive Circular Slider 9 | 10 | Schermata 2020-09-15 alle 10 47 46 11 | 12 | ## Example 13 | 14 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 15 | 16 | 17 | ![ezgif com-optimize](https://user-images.githubusercontent.com/60033082/93188851-c8155e80-f741-11ea-9149-cab4d301b092.gif) 18 | 19 | 20 | ## Requirements 21 | 22 | ## Installation 23 | 24 | SVCircularSlider is available through [CocoaPods](https://cocoapods.org). To install 25 | it, simply add the following line to your Podfile: 26 | 27 | ```ruby 28 | pod 'SVCircularSlider' 29 | ``` 30 | 31 | ## Author 32 | 33 | stevalsecchi98, stevalsecchi98@gmail.com 34 | 35 | ## License 36 | 37 | SVCircularSlider is available under the MIT license. See the LICENSE file for more info. 38 | -------------------------------------------------------------------------------- /SVCircularSlider.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint SVCircularSlider.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 = 'SVCircularSlider' 11 | s.version = '0.1.2' 12 | s.summary = 'Interactive and Customizeble Circular Slider' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | 'Interactive and Customizeble Circular Slider, which returns a percentage value' 22 | DESC 23 | 24 | s.homepage = 'https://github.com/stevalsecchi98/SVCircularSlider' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'stevalsecchi98' => 'Stevalsecchi98@gmail.com' } 28 | s.source = { :git => 'https://github.com/stevalsecchi98/SVCircularSlider.git', :tag => s.version.to_s } 29 | # s.social_media_url = 'https://twitter.com/' 30 | 31 | s.ios.deployment_target = '12.0' 32 | s.swift_version = '5.0' 33 | s.source_files = 'Source/**/*.swift' 34 | 35 | # s.resource_bundles = { 36 | # 'SVCircularSlider' => ['SVCircularSlider/Assets/*.png'] 37 | # } 38 | 39 | # s.public_header_files = 'Pod/Classes/**/*.h' 40 | # s.frameworks = 'UIKit', 'MapKit' 41 | # s.dependency 'AFNetworking', '~> 2.3' 42 | end 43 | -------------------------------------------------------------------------------- /Example/SVCircularSlider/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // SVCircularSlider 4 | // 5 | // Created by stevalsecchi98 on 09/14/2020. 6 | // Copyright (c) 2020 stevalsecchi98. 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-SVCircularSlider_Example/Pods-SVCircularSlider_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) 2020 stevalsecchi98 <stefano.valsecchi@vidiemme.lan> 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 | SVCircularSlider 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/SVCircularSlider/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 | -------------------------------------------------------------------------------- /Example/SVCircularSlider/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /Example/SVCircularSlider.xcodeproj/xcshareddata/xcschemes/SVCircularSlider-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-SVCircularSlider_Example/Pods-SVCircularSlider_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[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --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 | warn_missing_arch=${2:-true} 88 | if [ -r "$source" ]; then 89 | # Copy the dSYM into the targets temp dir. 90 | 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}\"" 91 | 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}" 92 | 93 | local basename 94 | basename="$(basename -s .dSYM "$source")" 95 | binary_name="$(ls "$source/Contents/Resources/DWARF")" 96 | binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" 97 | 98 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 99 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 100 | strip_invalid_archs "$binary" "$warn_missing_arch" 101 | fi 102 | 103 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 104 | # Move the stripped file into its final destination. 105 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 106 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 107 | else 108 | # 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. 109 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" 110 | fi 111 | fi 112 | } 113 | 114 | # Copies the bcsymbolmap files of a vendored framework 115 | install_bcsymbolmap() { 116 | local bcsymbolmap_path="$1" 117 | local destination="${BUILT_PRODUCTS_DIR}" 118 | 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}"" 119 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 120 | } 121 | 122 | # Signs a framework with the provided identity 123 | code_sign_if_enabled() { 124 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 125 | # Use the current code_sign_identity 126 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 127 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 128 | 129 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 130 | code_sign_cmd="$code_sign_cmd &" 131 | fi 132 | echo "$code_sign_cmd" 133 | eval "$code_sign_cmd" 134 | fi 135 | } 136 | 137 | # Strip invalid architectures 138 | strip_invalid_archs() { 139 | binary="$1" 140 | warn_missing_arch=${2:-true} 141 | # Get architectures for current target binary 142 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 143 | # Intersect them with the architectures we are building for 144 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 145 | # If there are no archs supported by this binary then warn the user 146 | if [[ -z "$intersected_archs" ]]; then 147 | if [[ "$warn_missing_arch" == "true" ]]; then 148 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 149 | fi 150 | STRIP_BINARY_RETVAL=0 151 | return 152 | fi 153 | stripped="" 154 | for arch in $binary_archs; do 155 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 156 | # Strip non-valid architectures in-place 157 | lipo -remove "$arch" -output "$binary" "$binary" 158 | stripped="$stripped $arch" 159 | fi 160 | done 161 | if [[ "$stripped" ]]; then 162 | echo "Stripped $binary of architectures:$stripped" 163 | fi 164 | STRIP_BINARY_RETVAL=1 165 | } 166 | 167 | install_artifact() { 168 | artifact="$1" 169 | base="$(basename "$artifact")" 170 | case $base in 171 | *.framework) 172 | install_framework "$artifact" 173 | ;; 174 | *.dSYM) 175 | # Suppress arch warnings since XCFrameworks will include many dSYM files 176 | install_dsym "$artifact" "false" 177 | ;; 178 | *.bcsymbolmap) 179 | install_bcsymbolmap "$artifact" 180 | ;; 181 | *) 182 | echo "error: Unrecognized artifact "$artifact"" 183 | ;; 184 | esac 185 | } 186 | 187 | copy_artifacts() { 188 | file_list="$1" 189 | while read artifact; do 190 | install_artifact "$artifact" 191 | done <$file_list 192 | } 193 | 194 | ARTIFACT_LIST_FILE="${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt" 195 | if [ -r "${ARTIFACT_LIST_FILE}" ]; then 196 | copy_artifacts "${ARTIFACT_LIST_FILE}" 197 | fi 198 | 199 | if [[ "$CONFIGURATION" == "Debug" ]]; then 200 | install_framework "${BUILT_PRODUCTS_DIR}/SVCircularSlider/SVCircularSlider.framework" 201 | fi 202 | if [[ "$CONFIGURATION" == "Release" ]]; then 203 | install_framework "${BUILT_PRODUCTS_DIR}/SVCircularSlider/SVCircularSlider.framework" 204 | fi 205 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 206 | wait 207 | fi 208 | -------------------------------------------------------------------------------- /Source/CircularSlider.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PercentageView.swift 3 | // SPMDemo 4 | // 5 | // Created by IFTS06 on 04/09/2020. 6 | // 7 | 8 | import Foundation 9 | import UIKit 10 | 11 | // PRCENTAGE VIEW 12 | @available(iOS 9.1, *) 13 | @IBDesignable 14 | public class CircularSlider: UIView { 15 | // CONSTANTS FOR DRAWING 16 | private struct Constants { 17 | static let max : CGFloat = 1.0 18 | static let lineWidth: CGFloat = 5.0 19 | static let arcWidth: CGFloat = 30 20 | static var halfOfLineWidth: CGFloat { return lineWidth / 2 } 21 | } 22 | // PROGRESS: Indicates the percentage with a number between 0 and 1 23 | @IBInspectable public var progress: CGFloat = 0.65 { 24 | didSet { 25 | if !(0...1).contains(progress) { 26 | // clamp: if progress is over 1 or less than 0 give it a value between them 27 | progress = max(0, min(1, progress)) 28 | } 29 | setNeedsDisplay() 30 | } 31 | } 32 | // INSPECTABLE VARIABLES TO COLOR EACH ITEM FROM STORYBOARD 33 | @IBInspectable public var firstFillColor: UIColor = UIColor.red { didSet { setNeedsDisplay() } } 34 | @IBInspectable public var secondFillColor: UIColor = UIColor.yellow { didSet { setNeedsDisplay() } } 35 | @IBInspectable public var counterColor: UIColor = UIColor.orange { didSet { setNeedsDisplay() } } 36 | @IBInspectable public var knobColor: UIColor = .gray { didSet { setNeedsDisplay() } } 37 | // Label init 38 | let percentageLabel = UILabel(frame: CGRect(x: 150, y: 150, width: 200, height: 40)) 39 | // position to be set everytime the progress is updated 40 | public fileprivate(set) var pointerPosition: CGPoint = CGPoint() 41 | // boolean which chooses if the knob can be dragged or not 42 | var canDrag = false 43 | // variable that stores the lenght of the arc based on the last touch 44 | var oldLength : CGFloat = 300 45 | 46 | // TOUCHES BEGAN: if the touch is near thw pointer let it be possible to be dragged 47 | override public func touchesBegan(_ touches: Set, with event: UIEvent?) { 48 | if let firstTouch = touches.first { 49 | let hitView = self.hitTest(firstTouch.location(in: self), with: event) 50 | if hitView === self { 51 | // distance of touch from pointer 52 | let xDist = CGFloat(firstTouch.preciseLocation(in: hitView).x - pointerPosition.x) 53 | let yDist = CGFloat(firstTouch.preciseLocation(in: hitView).y - pointerPosition.y) 54 | let distance = CGFloat(sqrt((xDist * xDist) + (yDist * yDist))) 55 | canDrag = true 56 | guard distance < 30 else { return canDrag = false } 57 | } 58 | } 59 | } 60 | // TOUCHES MOVED: If touchesBegan says that the pointer can be dragged let it be dregged by the touch of the user 61 | public override func touchesMoved(_ touches: Set, with event: UIEvent?) { 62 | if let firstTouch = touches.first { 63 | let hitView = self.hitTest(firstTouch.location(in: self), with: event) 64 | if hitView === self { 65 | if canDrag == true { 66 | 67 | // CONSTANTS TO BE USED 68 | let center = CGPoint(x: bounds.width / 2, y: bounds.height / 2) 69 | let radiusBounds = max(bounds.width, bounds.height) 70 | let radius = radiusBounds/2 - Constants.arcWidth/2 71 | let touchX = firstTouch.preciseLocation(in: hitView).x 72 | let touchY = firstTouch.preciseLocation(in: hitView).y 73 | 74 | // FIND THE NEAREST POINT TO THE CIRCLE FROM THE TOUCH POSITION 75 | let dividendx = pow(touchX, 2) + pow(center.x, 2) - (2 * touchX * center.x) 76 | let dividendy = pow(touchY, 2) + pow(center.y, 2) - (2 * touchY * center.y) 77 | let dividend = sqrt(abs(dividendx) + abs(dividendy)) 78 | 79 | // POINT(x, y) FOUND 80 | let pointX = center.x + ((radius * (touchX - center.x)) / dividend) 81 | let pointY = center.y + ((radius * (touchY - center.y)) / dividend) 82 | 83 | // ARC LENGTH 84 | let arcAngle: CGFloat = (2 * .pi) + (.pi / 4) - (3 * .pi / 4) 85 | let arcLength = arcAngle * radius 86 | 87 | // NEW ARC LENGTH 88 | let xForTheta = Double(pointX) - Double(center.x) 89 | let yForTheta = Double(pointY) - Double(center.y) 90 | var theta : Double = atan2(yForTheta, xForTheta) - (3 * .pi / 4) 91 | if theta < 0 { 92 | theta += 2 * .pi 93 | } 94 | var newArcLength = CGFloat(theta) * radius 95 | 96 | // CHECK CONDITIONS OF THE POINTER'S POSITION 97 | if 480.0 ... 550.0 ~= newArcLength { newArcLength = 480 } 98 | else if 550.0 ... 630.0 ~= newArcLength { newArcLength = 0 } 99 | if oldLength == 480 && 0 ... 465 ~= newArcLength { newArcLength = 480 } 100 | else if oldLength == 0 && 15 ... 480 ~= newArcLength { newArcLength = 0 } 101 | oldLength = newArcLength 102 | 103 | // PERCENTAGE TO BE ASSIGNED TO THE PROGRES VAR 104 | let newPercentage = newArcLength/arcLength 105 | progress = CGFloat(newPercentage) 106 | } 107 | } 108 | } 109 | } 110 | // LABEL 111 | public func label() { 112 | // DRAW THE PERCENTAGE LABEL 113 | percentageLabel.translatesAutoresizingMaskIntoConstraints = true 114 | percentageLabel.font = percentageLabel.font.withSize(28) 115 | percentageLabel.center = CGPoint(x: 115, y: 115) 116 | percentageLabel.textAlignment = .center 117 | self.addSubview(percentageLabel) 118 | let percentage = Int(Double(progress * 100)) 119 | percentageLabel.text = "\(percentage)%" 120 | } 121 | // DRAW 122 | public override func draw(_ rect: CGRect) { 123 | // call label function 124 | label() 125 | 126 | //DRAW THE OUTLINE 127 | // 1 Define the center point you’ll rotate the arc around. 128 | let center = CGPoint(x: bounds.width / 2, y: bounds.height / 2) 129 | // 2 Calculate the radius based on the maximum dimension of the view. 130 | let radius = max(bounds.width, bounds.height) 131 | // 3 Define the start and end angles for the arc. 132 | let startAngle: CGFloat = 3 * .pi / 4 133 | let endAngle: CGFloat = .pi / 4 134 | // 4 Create a path based on the center point, radius and angles you defined 135 | let path = UIBezierPath( 136 | arcCenter: center, 137 | radius: radius/2 - Constants.arcWidth/2, 138 | startAngle: startAngle, 139 | endAngle: endAngle, 140 | clockwise: true) 141 | // 5 Set the line width and color before finally stroking the path. 142 | path.lineCapStyle = .round 143 | path.lineWidth = Constants.arcWidth 144 | counterColor.setStroke() 145 | path.stroke() 146 | 147 | //DRAW THE INLINE 148 | //1 - first calculate the difference between the two angles 149 | //ensuring it is positive 150 | let angleDifference: CGFloat = 2 * .pi - startAngle + endAngle 151 | //then calculate the arc for each single glass 152 | let arcLengthPerGlass = angleDifference / CGFloat(Constants.max) 153 | //then multiply out by the actual glasses drunk 154 | let outlineEndAngle = arcLengthPerGlass * CGFloat(progress) + startAngle 155 | // try to create an inside arc 156 | // radius is the same as main path 157 | let insidePath = UIBezierPath( 158 | arcCenter: center, 159 | radius: radius/2 - Constants.arcWidth/2, 160 | startAngle: startAngle, 161 | endAngle: outlineEndAngle, 162 | clockwise: true) 163 | //outlineColor.setStroke() 164 | insidePath.lineCapStyle = .round 165 | insidePath.lineWidth = CGFloat(30.0) 166 | insidePath.stroke() 167 | 168 | // GRADIENT: create a context to clip to the insidePath 169 | // graphicContext 170 | let c = UIGraphicsGetCurrentContext()! 171 | let clipPath: CGPath = insidePath.cgPath 172 | c.saveGState() 173 | c.setLineWidth(30.0) 174 | c.addPath(clipPath) 175 | c.setLineCap(.round) 176 | c.replacePathWithStrokedPath() 177 | c.clip() 178 | // Draw gradient 179 | let colors = [firstFillColor.cgColor, secondFillColor.cgColor] 180 | let offsets = [ CGFloat(0.0), CGFloat(1.0) ] 181 | let grad = CGGradient(colorsSpace: CGColorSpaceCreateDeviceRGB(), colors: colors as CFArray, locations: offsets) 182 | let start = CGPoint(x: 0, y: 0) 183 | let end = CGPoint(x: 230, y: 230) 184 | c.drawLinearGradient(grad!, start: start, end: end, options: []) 185 | c.restoreGState() 186 | // result 187 | let result = UIGraphicsGetImageFromCurrentImageContext() 188 | UIGraphicsEndImageContext() 189 | 190 | // DRAW THE POINTER 191 | let pointerRect = CGRect(x: insidePath.currentPoint.x - Constants.arcWidth / 2, y: insidePath.currentPoint.y - Constants.arcWidth / 2, width: Constants.arcWidth, height: Constants.arcWidth) 192 | let pointer = UIBezierPath(ovalIn: pointerRect) 193 | knobColor.setFill() 194 | pointer.fill() 195 | insidePath.append(pointer) 196 | 197 | // SET THE POSITION 198 | pointerPosition = CGPoint(x: insidePath.currentPoint.x - Constants.arcWidth / 2, y: insidePath.currentPoint.y - Constants.arcWidth / 2) 199 | } 200 | } 201 | 202 | -------------------------------------------------------------------------------- /Example/SVCircularSlider.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 5B4590B0626C6A6EAF3F669A /* Pods_SVCircularSlider_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0E23BC87D64C110AA574D53 /* Pods_SVCircularSlider_Example.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 | C9FF373E8DF571EE71D5D5D8 /* Pods_SVCircularSlider_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 49B247F4AD919C7937487656 /* Pods_SVCircularSlider_Tests.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 = SVCircularSlider; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 1381BBB639A14A2C6FA43ACE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 32 | 2828F6F8215C4C40B05821FB /* SVCircularSlider.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = SVCircularSlider.podspec; path = ../SVCircularSlider.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 33 | 49B247F4AD919C7937487656 /* Pods_SVCircularSlider_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SVCircularSlider_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 34 | 607FACD01AFB9204008FA782 /* SVCircularSlider_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SVCircularSlider_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 36 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 38 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 39 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 40 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 41 | 607FACE51AFB9204008FA782 /* SVCircularSlider_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SVCircularSlider_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 43 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 44 | 706F55B0325082C068EB7C8D /* Pods-SVCircularSlider_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SVCircularSlider_Example.debug.xcconfig"; path = "Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_Example.debug.xcconfig"; sourceTree = ""; }; 45 | 74042F0D0C997B9FDA61572C /* Pods-SVCircularSlider_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SVCircularSlider_Example.release.xcconfig"; path = "Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_Example.release.xcconfig"; sourceTree = ""; }; 46 | 847D2124D9445B1621E87595 /* Pods-SVCircularSlider_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SVCircularSlider_Tests.release.xcconfig"; path = "Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests.release.xcconfig"; sourceTree = ""; }; 47 | 9C7CA6D2CE8B53CAF24A7C7F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 48 | B0E23BC87D64C110AA574D53 /* Pods_SVCircularSlider_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SVCircularSlider_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | BEE1D1DB796C05A7FD3FD41F /* Pods-SVCircularSlider_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SVCircularSlider_Tests.debug.xcconfig"; path = "Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests.debug.xcconfig"; sourceTree = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 5B4590B0626C6A6EAF3F669A /* Pods_SVCircularSlider_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | C9FF373E8DF571EE71D5D5D8 /* Pods_SVCircularSlider_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 607FACC71AFB9204008FA782 = { 73 | isa = PBXGroup; 74 | children = ( 75 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 76 | 607FACD21AFB9204008FA782 /* Example for SVCircularSlider */, 77 | 607FACE81AFB9204008FA782 /* Tests */, 78 | 607FACD11AFB9204008FA782 /* Products */, 79 | FED8FF41BF70FB70298A3DA3 /* Pods */, 80 | 95E9C59B7841244908F5D308 /* Frameworks */, 81 | ); 82 | sourceTree = ""; 83 | }; 84 | 607FACD11AFB9204008FA782 /* Products */ = { 85 | isa = PBXGroup; 86 | children = ( 87 | 607FACD01AFB9204008FA782 /* SVCircularSlider_Example.app */, 88 | 607FACE51AFB9204008FA782 /* SVCircularSlider_Tests.xctest */, 89 | ); 90 | name = Products; 91 | sourceTree = ""; 92 | }; 93 | 607FACD21AFB9204008FA782 /* Example for SVCircularSlider */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 97 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 98 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 99 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 100 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 101 | 607FACD31AFB9204008FA782 /* Supporting Files */, 102 | ); 103 | name = "Example for SVCircularSlider"; 104 | path = SVCircularSlider; 105 | sourceTree = ""; 106 | }; 107 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 607FACD41AFB9204008FA782 /* Info.plist */, 111 | ); 112 | name = "Supporting Files"; 113 | sourceTree = ""; 114 | }; 115 | 607FACE81AFB9204008FA782 /* Tests */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 119 | 607FACE91AFB9204008FA782 /* Supporting Files */, 120 | ); 121 | path = Tests; 122 | sourceTree = ""; 123 | }; 124 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 607FACEA1AFB9204008FA782 /* Info.plist */, 128 | ); 129 | name = "Supporting Files"; 130 | sourceTree = ""; 131 | }; 132 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 133 | isa = PBXGroup; 134 | children = ( 135 | 2828F6F8215C4C40B05821FB /* SVCircularSlider.podspec */, 136 | 1381BBB639A14A2C6FA43ACE /* README.md */, 137 | 9C7CA6D2CE8B53CAF24A7C7F /* LICENSE */, 138 | ); 139 | name = "Podspec Metadata"; 140 | sourceTree = ""; 141 | }; 142 | 95E9C59B7841244908F5D308 /* Frameworks */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | B0E23BC87D64C110AA574D53 /* Pods_SVCircularSlider_Example.framework */, 146 | 49B247F4AD919C7937487656 /* Pods_SVCircularSlider_Tests.framework */, 147 | ); 148 | name = Frameworks; 149 | sourceTree = ""; 150 | }; 151 | FED8FF41BF70FB70298A3DA3 /* Pods */ = { 152 | isa = PBXGroup; 153 | children = ( 154 | 706F55B0325082C068EB7C8D /* Pods-SVCircularSlider_Example.debug.xcconfig */, 155 | 74042F0D0C997B9FDA61572C /* Pods-SVCircularSlider_Example.release.xcconfig */, 156 | BEE1D1DB796C05A7FD3FD41F /* Pods-SVCircularSlider_Tests.debug.xcconfig */, 157 | 847D2124D9445B1621E87595 /* Pods-SVCircularSlider_Tests.release.xcconfig */, 158 | ); 159 | path = Pods; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* SVCircularSlider_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SVCircularSlider_Example" */; 168 | buildPhases = ( 169 | 5C196404E957CF621BC3CB29 /* [CP] Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | F9035387EBB6EFF5C845139B /* [CP] Embed Pods Frameworks */, 174 | ); 175 | buildRules = ( 176 | ); 177 | dependencies = ( 178 | ); 179 | name = SVCircularSlider_Example; 180 | productName = SVCircularSlider; 181 | productReference = 607FACD01AFB9204008FA782 /* SVCircularSlider_Example.app */; 182 | productType = "com.apple.product-type.application"; 183 | }; 184 | 607FACE41AFB9204008FA782 /* SVCircularSlider_Tests */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SVCircularSlider_Tests" */; 187 | buildPhases = ( 188 | 708DCEFE204A93F684EB49ED /* [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 = SVCircularSlider_Tests; 199 | productName = Tests; 200 | productReference = 607FACE51AFB9204008FA782 /* SVCircularSlider_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 | DevelopmentTeam = K47F9Z9P4D; 216 | LastSwiftMigration = 0900; 217 | }; 218 | 607FACE41AFB9204008FA782 = { 219 | CreatedOnToolsVersion = 6.3.1; 220 | LastSwiftMigration = 0900; 221 | TestTargetID = 607FACCF1AFB9204008FA782; 222 | }; 223 | }; 224 | }; 225 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "SVCircularSlider" */; 226 | compatibilityVersion = "Xcode 3.2"; 227 | developmentRegion = English; 228 | hasScannedForEncodings = 0; 229 | knownRegions = ( 230 | English, 231 | en, 232 | Base, 233 | ); 234 | mainGroup = 607FACC71AFB9204008FA782; 235 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 236 | projectDirPath = ""; 237 | projectRoot = ""; 238 | targets = ( 239 | 607FACCF1AFB9204008FA782 /* SVCircularSlider_Example */, 240 | 607FACE41AFB9204008FA782 /* SVCircularSlider_Tests */, 241 | ); 242 | }; 243 | /* End PBXProject section */ 244 | 245 | /* Begin PBXResourcesBuildPhase section */ 246 | 607FACCE1AFB9204008FA782 /* Resources */ = { 247 | isa = PBXResourcesBuildPhase; 248 | buildActionMask = 2147483647; 249 | files = ( 250 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 251 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 252 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 253 | ); 254 | runOnlyForDeploymentPostprocessing = 0; 255 | }; 256 | 607FACE31AFB9204008FA782 /* Resources */ = { 257 | isa = PBXResourcesBuildPhase; 258 | buildActionMask = 2147483647; 259 | files = ( 260 | ); 261 | runOnlyForDeploymentPostprocessing = 0; 262 | }; 263 | /* End PBXResourcesBuildPhase section */ 264 | 265 | /* Begin PBXShellScriptBuildPhase section */ 266 | 5C196404E957CF621BC3CB29 /* [CP] Check Pods Manifest.lock */ = { 267 | isa = PBXShellScriptBuildPhase; 268 | buildActionMask = 2147483647; 269 | files = ( 270 | ); 271 | inputFileListPaths = ( 272 | ); 273 | inputPaths = ( 274 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 275 | "${PODS_ROOT}/Manifest.lock", 276 | ); 277 | name = "[CP] Check Pods Manifest.lock"; 278 | outputFileListPaths = ( 279 | ); 280 | outputPaths = ( 281 | "$(DERIVED_FILE_DIR)/Pods-SVCircularSlider_Example-checkManifestLockResult.txt", 282 | ); 283 | runOnlyForDeploymentPostprocessing = 0; 284 | shellPath = /bin/sh; 285 | 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"; 286 | showEnvVarsInLog = 0; 287 | }; 288 | 708DCEFE204A93F684EB49ED /* [CP] Check Pods Manifest.lock */ = { 289 | isa = PBXShellScriptBuildPhase; 290 | buildActionMask = 2147483647; 291 | files = ( 292 | ); 293 | inputFileListPaths = ( 294 | ); 295 | inputPaths = ( 296 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 297 | "${PODS_ROOT}/Manifest.lock", 298 | ); 299 | name = "[CP] Check Pods Manifest.lock"; 300 | outputFileListPaths = ( 301 | ); 302 | outputPaths = ( 303 | "$(DERIVED_FILE_DIR)/Pods-SVCircularSlider_Tests-checkManifestLockResult.txt", 304 | ); 305 | runOnlyForDeploymentPostprocessing = 0; 306 | shellPath = /bin/sh; 307 | 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"; 308 | showEnvVarsInLog = 0; 309 | }; 310 | F9035387EBB6EFF5C845139B /* [CP] Embed Pods Frameworks */ = { 311 | isa = PBXShellScriptBuildPhase; 312 | buildActionMask = 2147483647; 313 | files = ( 314 | ); 315 | inputPaths = ( 316 | "${PODS_ROOT}/Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_Example-frameworks.sh", 317 | "${BUILT_PRODUCTS_DIR}/SVCircularSlider/SVCircularSlider.framework", 318 | ); 319 | name = "[CP] Embed Pods Frameworks"; 320 | outputPaths = ( 321 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SVCircularSlider.framework", 322 | ); 323 | runOnlyForDeploymentPostprocessing = 0; 324 | shellPath = /bin/sh; 325 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_Example-frameworks.sh\"\n"; 326 | showEnvVarsInLog = 0; 327 | }; 328 | /* End PBXShellScriptBuildPhase section */ 329 | 330 | /* Begin PBXSourcesBuildPhase section */ 331 | 607FACCC1AFB9204008FA782 /* Sources */ = { 332 | isa = PBXSourcesBuildPhase; 333 | buildActionMask = 2147483647; 334 | files = ( 335 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 336 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 337 | ); 338 | runOnlyForDeploymentPostprocessing = 0; 339 | }; 340 | 607FACE11AFB9204008FA782 /* Sources */ = { 341 | isa = PBXSourcesBuildPhase; 342 | buildActionMask = 2147483647; 343 | files = ( 344 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 345 | ); 346 | runOnlyForDeploymentPostprocessing = 0; 347 | }; 348 | /* End PBXSourcesBuildPhase section */ 349 | 350 | /* Begin PBXTargetDependency section */ 351 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 352 | isa = PBXTargetDependency; 353 | target = 607FACCF1AFB9204008FA782 /* SVCircularSlider_Example */; 354 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 355 | }; 356 | /* End PBXTargetDependency section */ 357 | 358 | /* Begin PBXVariantGroup section */ 359 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 360 | isa = PBXVariantGroup; 361 | children = ( 362 | 607FACDA1AFB9204008FA782 /* Base */, 363 | ); 364 | name = Main.storyboard; 365 | sourceTree = ""; 366 | }; 367 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 368 | isa = PBXVariantGroup; 369 | children = ( 370 | 607FACDF1AFB9204008FA782 /* Base */, 371 | ); 372 | name = LaunchScreen.xib; 373 | sourceTree = ""; 374 | }; 375 | /* End PBXVariantGroup section */ 376 | 377 | /* Begin XCBuildConfiguration section */ 378 | 607FACED1AFB9204008FA782 /* Debug */ = { 379 | isa = XCBuildConfiguration; 380 | buildSettings = { 381 | ALWAYS_SEARCH_USER_PATHS = NO; 382 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 383 | CLANG_CXX_LIBRARY = "libc++"; 384 | CLANG_ENABLE_MODULES = YES; 385 | CLANG_ENABLE_OBJC_ARC = YES; 386 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 387 | CLANG_WARN_BOOL_CONVERSION = YES; 388 | CLANG_WARN_COMMA = YES; 389 | CLANG_WARN_CONSTANT_CONVERSION = YES; 390 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 391 | CLANG_WARN_EMPTY_BODY = YES; 392 | CLANG_WARN_ENUM_CONVERSION = YES; 393 | CLANG_WARN_INFINITE_RECURSION = YES; 394 | CLANG_WARN_INT_CONVERSION = YES; 395 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 396 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 397 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 398 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 399 | CLANG_WARN_STRICT_PROTOTYPES = YES; 400 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 401 | CLANG_WARN_UNREACHABLE_CODE = YES; 402 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 403 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 404 | COPY_PHASE_STRIP = NO; 405 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 406 | ENABLE_STRICT_OBJC_MSGSEND = YES; 407 | ENABLE_TESTABILITY = YES; 408 | GCC_C_LANGUAGE_STANDARD = gnu99; 409 | GCC_DYNAMIC_NO_PIC = NO; 410 | GCC_NO_COMMON_BLOCKS = YES; 411 | GCC_OPTIMIZATION_LEVEL = 0; 412 | GCC_PREPROCESSOR_DEFINITIONS = ( 413 | "DEBUG=1", 414 | "$(inherited)", 415 | ); 416 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 417 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 418 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 419 | GCC_WARN_UNDECLARED_SELECTOR = YES; 420 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 421 | GCC_WARN_UNUSED_FUNCTION = YES; 422 | GCC_WARN_UNUSED_VARIABLE = YES; 423 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 424 | MTL_ENABLE_DEBUG_INFO = YES; 425 | ONLY_ACTIVE_ARCH = YES; 426 | SDKROOT = iphoneos; 427 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 428 | }; 429 | name = Debug; 430 | }; 431 | 607FACEE1AFB9204008FA782 /* Release */ = { 432 | isa = XCBuildConfiguration; 433 | buildSettings = { 434 | ALWAYS_SEARCH_USER_PATHS = NO; 435 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 436 | CLANG_CXX_LIBRARY = "libc++"; 437 | CLANG_ENABLE_MODULES = YES; 438 | CLANG_ENABLE_OBJC_ARC = YES; 439 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 440 | CLANG_WARN_BOOL_CONVERSION = YES; 441 | CLANG_WARN_COMMA = YES; 442 | CLANG_WARN_CONSTANT_CONVERSION = YES; 443 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 444 | CLANG_WARN_EMPTY_BODY = YES; 445 | CLANG_WARN_ENUM_CONVERSION = YES; 446 | CLANG_WARN_INFINITE_RECURSION = YES; 447 | CLANG_WARN_INT_CONVERSION = YES; 448 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 449 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 450 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 451 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 452 | CLANG_WARN_STRICT_PROTOTYPES = YES; 453 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 454 | CLANG_WARN_UNREACHABLE_CODE = YES; 455 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 456 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 457 | COPY_PHASE_STRIP = NO; 458 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 459 | ENABLE_NS_ASSERTIONS = NO; 460 | ENABLE_STRICT_OBJC_MSGSEND = YES; 461 | GCC_C_LANGUAGE_STANDARD = gnu99; 462 | GCC_NO_COMMON_BLOCKS = YES; 463 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 464 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 465 | GCC_WARN_UNDECLARED_SELECTOR = YES; 466 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 467 | GCC_WARN_UNUSED_FUNCTION = YES; 468 | GCC_WARN_UNUSED_VARIABLE = YES; 469 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 470 | MTL_ENABLE_DEBUG_INFO = NO; 471 | SDKROOT = iphoneos; 472 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 473 | VALIDATE_PRODUCT = YES; 474 | }; 475 | name = Release; 476 | }; 477 | 607FACF01AFB9204008FA782 /* Debug */ = { 478 | isa = XCBuildConfiguration; 479 | baseConfigurationReference = 706F55B0325082C068EB7C8D /* Pods-SVCircularSlider_Example.debug.xcconfig */; 480 | buildSettings = { 481 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 482 | DEVELOPMENT_TEAM = K47F9Z9P4D; 483 | INFOPLIST_FILE = SVCircularSlider/Info.plist; 484 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 485 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 486 | MODULE_NAME = ExampleApp; 487 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 488 | PRODUCT_NAME = "$(TARGET_NAME)"; 489 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 490 | SWIFT_VERSION = 4.0; 491 | }; 492 | name = Debug; 493 | }; 494 | 607FACF11AFB9204008FA782 /* Release */ = { 495 | isa = XCBuildConfiguration; 496 | baseConfigurationReference = 74042F0D0C997B9FDA61572C /* Pods-SVCircularSlider_Example.release.xcconfig */; 497 | buildSettings = { 498 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 499 | DEVELOPMENT_TEAM = K47F9Z9P4D; 500 | INFOPLIST_FILE = SVCircularSlider/Info.plist; 501 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 502 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 503 | MODULE_NAME = ExampleApp; 504 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 505 | PRODUCT_NAME = "$(TARGET_NAME)"; 506 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 507 | SWIFT_VERSION = 4.0; 508 | }; 509 | name = Release; 510 | }; 511 | 607FACF31AFB9204008FA782 /* Debug */ = { 512 | isa = XCBuildConfiguration; 513 | baseConfigurationReference = BEE1D1DB796C05A7FD3FD41F /* Pods-SVCircularSlider_Tests.debug.xcconfig */; 514 | buildSettings = { 515 | FRAMEWORK_SEARCH_PATHS = ( 516 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 517 | "$(inherited)", 518 | ); 519 | GCC_PREPROCESSOR_DEFINITIONS = ( 520 | "DEBUG=1", 521 | "$(inherited)", 522 | ); 523 | INFOPLIST_FILE = Tests/Info.plist; 524 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 525 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 526 | PRODUCT_NAME = "$(TARGET_NAME)"; 527 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 528 | SWIFT_VERSION = 4.0; 529 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SVCircularSlider_Example.app/SVCircularSlider_Example"; 530 | }; 531 | name = Debug; 532 | }; 533 | 607FACF41AFB9204008FA782 /* Release */ = { 534 | isa = XCBuildConfiguration; 535 | baseConfigurationReference = 847D2124D9445B1621E87595 /* Pods-SVCircularSlider_Tests.release.xcconfig */; 536 | buildSettings = { 537 | FRAMEWORK_SEARCH_PATHS = ( 538 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 539 | "$(inherited)", 540 | ); 541 | INFOPLIST_FILE = Tests/Info.plist; 542 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 543 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 544 | PRODUCT_NAME = "$(TARGET_NAME)"; 545 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 546 | SWIFT_VERSION = 4.0; 547 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SVCircularSlider_Example.app/SVCircularSlider_Example"; 548 | }; 549 | name = Release; 550 | }; 551 | /* End XCBuildConfiguration section */ 552 | 553 | /* Begin XCConfigurationList section */ 554 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "SVCircularSlider" */ = { 555 | isa = XCConfigurationList; 556 | buildConfigurations = ( 557 | 607FACED1AFB9204008FA782 /* Debug */, 558 | 607FACEE1AFB9204008FA782 /* Release */, 559 | ); 560 | defaultConfigurationIsVisible = 0; 561 | defaultConfigurationName = Release; 562 | }; 563 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SVCircularSlider_Example" */ = { 564 | isa = XCConfigurationList; 565 | buildConfigurations = ( 566 | 607FACF01AFB9204008FA782 /* Debug */, 567 | 607FACF11AFB9204008FA782 /* Release */, 568 | ); 569 | defaultConfigurationIsVisible = 0; 570 | defaultConfigurationName = Release; 571 | }; 572 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SVCircularSlider_Tests" */ = { 573 | isa = XCConfigurationList; 574 | buildConfigurations = ( 575 | 607FACF31AFB9204008FA782 /* Debug */, 576 | 607FACF41AFB9204008FA782 /* Release */, 577 | ); 578 | defaultConfigurationIsVisible = 0; 579 | defaultConfigurationName = Release; 580 | }; 581 | /* End XCConfigurationList section */ 582 | }; 583 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 584 | } 585 | -------------------------------------------------------------------------------- /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 | 2BF434D3DDC1236BF81A7CC26F72BE6E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 11 | 3833B6DB62F440E4B04FC76B4A13938F /* Pods-SVCircularSlider_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D56BE231B83510ACB97C771A9F275AA /* Pods-SVCircularSlider_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 3ACCD55E39583889F51A817FFB1F8BB2 /* Pods-SVCircularSlider_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FE9C0BB02C6F0E3CFA0B0314BC89D64 /* Pods-SVCircularSlider_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 520144F217D27A2B0C8156540C673CAC /* SVCircularSlider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 82A66000CAA9A7104F09B5C3B3813C6F /* SVCircularSlider-dummy.m */; }; 14 | 7AAF3126250FBF3300C29B16 /* CircularSlider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AAF3125250FBF3300C29B16 /* CircularSlider.swift */; }; 15 | 858DE1AFF9EBC75520927CB24BBA9959 /* Pods-SVCircularSlider_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 35DCDC6898E0D882229101D9E4B3C985 /* Pods-SVCircularSlider_Tests-dummy.m */; }; 16 | 93E9DF85EA57A1EC96ABFB9AFFB5C68D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 17 | A32303B6B62B5A185C6641361F8B06CD /* SVCircularSlider-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA441D6789F25095C8BA78F77A1DDD6 /* SVCircularSlider-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | A442A38B7AC3A11BC6AF48F5DF153F7E /* Pods-SVCircularSlider_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C577CD57C8D5B2CA729176DAF9D222B0 /* Pods-SVCircularSlider_Example-dummy.m */; }; 19 | C68E5EE723C652BC60D1D1EF9AB81F11 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXContainerItemProxy section */ 23 | 363467C820476F7FFE09C78936E10E31 /* PBXContainerItemProxy */ = { 24 | isa = PBXContainerItemProxy; 25 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 26 | proxyType = 1; 27 | remoteGlobalIDString = 27A647AB98857BC87271034026088153; 28 | remoteInfo = "Pods-SVCircularSlider_Example"; 29 | }; 30 | D25A8686A06F8DABE1E9693A1A584DEB /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = B151D5D49D9D86A7731C36BE73C77E3E; 35 | remoteInfo = SVCircularSlider; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 01FF897C6CB22F5C115DEC3749FB79EE /* Pods-SVCircularSlider_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SVCircularSlider_Example-frameworks.sh"; sourceTree = ""; }; 41 | 036B76A5A3607D7ABB130982284CB207 /* Pods-SVCircularSlider_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SVCircularSlider_Tests-acknowledgements.markdown"; sourceTree = ""; }; 42 | 0BB9A3245D3901AEC79680CC972A5CC1 /* SVCircularSlider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVCircularSlider.debug.xcconfig; sourceTree = ""; }; 43 | 0D54BDFB7778B425FB446E1885BD22EA /* Pods-SVCircularSlider_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SVCircularSlider_Example.release.xcconfig"; sourceTree = ""; }; 44 | 159E31D31FCA37C8B209AE62FF56EF75 /* Pods-SVCircularSlider_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SVCircularSlider_Tests.debug.xcconfig"; sourceTree = ""; }; 45 | 2F15A184868889E0571C155EC2F512D0 /* Pods-SVCircularSlider_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SVCircularSlider_Tests.release.xcconfig"; sourceTree = ""; }; 46 | 2F8744FBDA5BC3CFBBFE9F11ABFA4890 /* Pods-SVCircularSlider_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SVCircularSlider_Example-acknowledgements.markdown"; sourceTree = ""; }; 47 | 3212113385A8FBBDB272BD23C409FF61 /* 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; }; 48 | 35DCDC6898E0D882229101D9E4B3C985 /* Pods-SVCircularSlider_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SVCircularSlider_Tests-dummy.m"; sourceTree = ""; }; 49 | 4AD68C847DBC13C6A67BC2FFA48B1F80 /* Pods-SVCircularSlider_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-SVCircularSlider_Tests.modulemap"; sourceTree = ""; }; 50 | 4FE9C0BB02C6F0E3CFA0B0314BC89D64 /* Pods-SVCircularSlider_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SVCircularSlider_Example-umbrella.h"; sourceTree = ""; }; 51 | 52DCFA6FB41F64E80B761352E54EB6E3 /* Pods_SVCircularSlider_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SVCircularSlider_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 52 | 5B8692C5C834F05BF6B409C52DFC4F90 /* SVCircularSlider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = SVCircularSlider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 53 | 5D56BE231B83510ACB97C771A9F275AA /* Pods-SVCircularSlider_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SVCircularSlider_Tests-umbrella.h"; sourceTree = ""; }; 54 | 654CF8832C6FA1E4658B4E839B8A851B /* Pods-SVCircularSlider_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SVCircularSlider_Example.debug.xcconfig"; sourceTree = ""; }; 55 | 671BFBAD18AEB8FFBBF7D95E12F0707E /* SVCircularSlider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVCircularSlider.release.xcconfig; sourceTree = ""; }; 56 | 6C8C96272A55B411A2CEB45BC1DF6D4A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 57 | 6CA441D6789F25095C8BA78F77A1DDD6 /* SVCircularSlider-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVCircularSlider-umbrella.h"; sourceTree = ""; }; 58 | 6DFCC2E3AFE17CC0736202D274FA7649 /* Pods-SVCircularSlider_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SVCircularSlider_Example-Info.plist"; sourceTree = ""; }; 59 | 7AAF3125250FBF3300C29B16 /* CircularSlider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CircularSlider.swift; sourceTree = ""; }; 60 | 82A66000CAA9A7104F09B5C3B3813C6F /* SVCircularSlider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SVCircularSlider-dummy.m"; sourceTree = ""; }; 61 | 84773B2029CB02D9F8F6FBF638190FA6 /* Pods-SVCircularSlider_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SVCircularSlider_Tests-Info.plist"; sourceTree = ""; }; 62 | 873770DEE6313D168815E25A2574A34E /* Pods-SVCircularSlider_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SVCircularSlider_Tests-acknowledgements.plist"; sourceTree = ""; }; 63 | 8E1584641F66BBA70ED832F099937743 /* Pods-SVCircularSlider_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SVCircularSlider_Example-acknowledgements.plist"; sourceTree = ""; }; 64 | 9ADE5759C0E241A8B2CE62C26DBF79D0 /* Pods_SVCircularSlider_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SVCircularSlider_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 65 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 66 | A384433DB56F452807D088E834793946 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 67 | A8C9D8627894A1260EFD05A320B09FED /* SVCircularSlider.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SVCircularSlider.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 68 | B88B580829C1364E4EC1AEBE77548344 /* Pods-SVCircularSlider_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-SVCircularSlider_Example.modulemap"; sourceTree = ""; }; 69 | C577CD57C8D5B2CA729176DAF9D222B0 /* Pods-SVCircularSlider_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SVCircularSlider_Example-dummy.m"; sourceTree = ""; }; 70 | E76F9CD5F9524ACA8ACED16F71B1CDB4 /* SVCircularSlider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVCircularSlider-prefix.pch"; sourceTree = ""; }; 71 | EE089F50D6BB8BE7D19F04EDB52283AA /* SVCircularSlider.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SVCircularSlider.modulemap; sourceTree = ""; }; 72 | FB0A1BFD0ACE43D4FDA35F2A989FA42F /* SVCircularSlider-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SVCircularSlider-Info.plist"; sourceTree = ""; }; 73 | /* End PBXFileReference section */ 74 | 75 | /* Begin PBXFrameworksBuildPhase section */ 76 | 5979CB45B7D5B1E88D3C0BE9DCAA8003 /* Frameworks */ = { 77 | isa = PBXFrameworksBuildPhase; 78 | buildActionMask = 2147483647; 79 | files = ( 80 | C68E5EE723C652BC60D1D1EF9AB81F11 /* Foundation.framework in Frameworks */, 81 | ); 82 | runOnlyForDeploymentPostprocessing = 0; 83 | }; 84 | 6045CC4660EC40CB023F7EC7666F52FD /* Frameworks */ = { 85 | isa = PBXFrameworksBuildPhase; 86 | buildActionMask = 2147483647; 87 | files = ( 88 | 2BF434D3DDC1236BF81A7CC26F72BE6E /* Foundation.framework in Frameworks */, 89 | ); 90 | runOnlyForDeploymentPostprocessing = 0; 91 | }; 92 | C0E59FE589682852E0591F6252254C3D /* Frameworks */ = { 93 | isa = PBXFrameworksBuildPhase; 94 | buildActionMask = 2147483647; 95 | files = ( 96 | 93E9DF85EA57A1EC96ABFB9AFFB5C68D /* Foundation.framework in Frameworks */, 97 | ); 98 | runOnlyForDeploymentPostprocessing = 0; 99 | }; 100 | /* End PBXFrameworksBuildPhase section */ 101 | 102 | /* Begin PBXGroup section */ 103 | 065473C7310A55959C57CAAB215F5AB6 /* SVCircularSlider */ = { 104 | isa = PBXGroup; 105 | children = ( 106 | 7AAF3124250FBEA900C29B16 /* Source */, 107 | 42FBEFBC2747BF915A93CFA402F33213 /* Pod */, 108 | 170ABFA42FEB9B4B0EF69A5D71FF5788 /* Support Files */, 109 | ); 110 | name = SVCircularSlider; 111 | path = ../..; 112 | sourceTree = ""; 113 | }; 114 | 14C41FCC464F7F877A0325756D2176B8 /* Pods-SVCircularSlider_Example */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | B88B580829C1364E4EC1AEBE77548344 /* Pods-SVCircularSlider_Example.modulemap */, 118 | 2F8744FBDA5BC3CFBBFE9F11ABFA4890 /* Pods-SVCircularSlider_Example-acknowledgements.markdown */, 119 | 8E1584641F66BBA70ED832F099937743 /* Pods-SVCircularSlider_Example-acknowledgements.plist */, 120 | C577CD57C8D5B2CA729176DAF9D222B0 /* Pods-SVCircularSlider_Example-dummy.m */, 121 | 01FF897C6CB22F5C115DEC3749FB79EE /* Pods-SVCircularSlider_Example-frameworks.sh */, 122 | 6DFCC2E3AFE17CC0736202D274FA7649 /* Pods-SVCircularSlider_Example-Info.plist */, 123 | 4FE9C0BB02C6F0E3CFA0B0314BC89D64 /* Pods-SVCircularSlider_Example-umbrella.h */, 124 | 654CF8832C6FA1E4658B4E839B8A851B /* Pods-SVCircularSlider_Example.debug.xcconfig */, 125 | 0D54BDFB7778B425FB446E1885BD22EA /* Pods-SVCircularSlider_Example.release.xcconfig */, 126 | ); 127 | name = "Pods-SVCircularSlider_Example"; 128 | path = "Target Support Files/Pods-SVCircularSlider_Example"; 129 | sourceTree = ""; 130 | }; 131 | 170ABFA42FEB9B4B0EF69A5D71FF5788 /* Support Files */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | EE089F50D6BB8BE7D19F04EDB52283AA /* SVCircularSlider.modulemap */, 135 | 82A66000CAA9A7104F09B5C3B3813C6F /* SVCircularSlider-dummy.m */, 136 | FB0A1BFD0ACE43D4FDA35F2A989FA42F /* SVCircularSlider-Info.plist */, 137 | E76F9CD5F9524ACA8ACED16F71B1CDB4 /* SVCircularSlider-prefix.pch */, 138 | 6CA441D6789F25095C8BA78F77A1DDD6 /* SVCircularSlider-umbrella.h */, 139 | 0BB9A3245D3901AEC79680CC972A5CC1 /* SVCircularSlider.debug.xcconfig */, 140 | 671BFBAD18AEB8FFBBF7D95E12F0707E /* SVCircularSlider.release.xcconfig */, 141 | ); 142 | name = "Support Files"; 143 | path = "Example/Pods/Target Support Files/SVCircularSlider"; 144 | sourceTree = ""; 145 | }; 146 | 396840917830365605F6E9B1BEF22C5C /* Pods-SVCircularSlider_Tests */ = { 147 | isa = PBXGroup; 148 | children = ( 149 | 4AD68C847DBC13C6A67BC2FFA48B1F80 /* Pods-SVCircularSlider_Tests.modulemap */, 150 | 036B76A5A3607D7ABB130982284CB207 /* Pods-SVCircularSlider_Tests-acknowledgements.markdown */, 151 | 873770DEE6313D168815E25A2574A34E /* Pods-SVCircularSlider_Tests-acknowledgements.plist */, 152 | 35DCDC6898E0D882229101D9E4B3C985 /* Pods-SVCircularSlider_Tests-dummy.m */, 153 | 84773B2029CB02D9F8F6FBF638190FA6 /* Pods-SVCircularSlider_Tests-Info.plist */, 154 | 5D56BE231B83510ACB97C771A9F275AA /* Pods-SVCircularSlider_Tests-umbrella.h */, 155 | 159E31D31FCA37C8B209AE62FF56EF75 /* Pods-SVCircularSlider_Tests.debug.xcconfig */, 156 | 2F15A184868889E0571C155EC2F512D0 /* Pods-SVCircularSlider_Tests.release.xcconfig */, 157 | ); 158 | name = "Pods-SVCircularSlider_Tests"; 159 | path = "Target Support Files/Pods-SVCircularSlider_Tests"; 160 | sourceTree = ""; 161 | }; 162 | 42FBEFBC2747BF915A93CFA402F33213 /* Pod */ = { 163 | isa = PBXGroup; 164 | children = ( 165 | 6C8C96272A55B411A2CEB45BC1DF6D4A /* LICENSE */, 166 | A384433DB56F452807D088E834793946 /* README.md */, 167 | 5B8692C5C834F05BF6B409C52DFC4F90 /* SVCircularSlider.podspec */, 168 | ); 169 | name = Pod; 170 | sourceTree = ""; 171 | }; 172 | 4C1F998D57EE52720F4FD2B571D9A7DF /* Development Pods */ = { 173 | isa = PBXGroup; 174 | children = ( 175 | 065473C7310A55959C57CAAB215F5AB6 /* SVCircularSlider */, 176 | ); 177 | name = "Development Pods"; 178 | sourceTree = ""; 179 | }; 180 | 7AAF3124250FBEA900C29B16 /* Source */ = { 181 | isa = PBXGroup; 182 | children = ( 183 | 7AAF3125250FBF3300C29B16 /* CircularSlider.swift */, 184 | ); 185 | path = Source; 186 | sourceTree = ""; 187 | }; 188 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { 189 | isa = PBXGroup; 190 | children = ( 191 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, 192 | ); 193 | name = iOS; 194 | sourceTree = ""; 195 | }; 196 | C37B8474E84EB5B48F61CF4606A88A6A /* Products */ = { 197 | isa = PBXGroup; 198 | children = ( 199 | 52DCFA6FB41F64E80B761352E54EB6E3 /* Pods_SVCircularSlider_Example.framework */, 200 | 9ADE5759C0E241A8B2CE62C26DBF79D0 /* Pods_SVCircularSlider_Tests.framework */, 201 | A8C9D8627894A1260EFD05A320B09FED /* SVCircularSlider.framework */, 202 | ); 203 | name = Products; 204 | sourceTree = ""; 205 | }; 206 | CF1408CF629C7361332E53B88F7BD30C = { 207 | isa = PBXGroup; 208 | children = ( 209 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 210 | 4C1F998D57EE52720F4FD2B571D9A7DF /* Development Pods */, 211 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 212 | C37B8474E84EB5B48F61CF4606A88A6A /* Products */, 213 | E8BB5A3BBBF047E46D7E8F4EDCF9487B /* Targets Support Files */, 214 | ); 215 | sourceTree = ""; 216 | }; 217 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 218 | isa = PBXGroup; 219 | children = ( 220 | C0834CEBB1379A84116EF29F93051C60 /* iOS */, 221 | ); 222 | name = Frameworks; 223 | sourceTree = ""; 224 | }; 225 | E8BB5A3BBBF047E46D7E8F4EDCF9487B /* Targets Support Files */ = { 226 | isa = PBXGroup; 227 | children = ( 228 | 14C41FCC464F7F877A0325756D2176B8 /* Pods-SVCircularSlider_Example */, 229 | 396840917830365605F6E9B1BEF22C5C /* Pods-SVCircularSlider_Tests */, 230 | ); 231 | name = "Targets Support Files"; 232 | sourceTree = ""; 233 | }; 234 | /* End PBXGroup section */ 235 | 236 | /* Begin PBXHeadersBuildPhase section */ 237 | 22D8AB551A740D60E08DA4896F4B1EB0 /* Headers */ = { 238 | isa = PBXHeadersBuildPhase; 239 | buildActionMask = 2147483647; 240 | files = ( 241 | 3833B6DB62F440E4B04FC76B4A13938F /* Pods-SVCircularSlider_Tests-umbrella.h in Headers */, 242 | ); 243 | runOnlyForDeploymentPostprocessing = 0; 244 | }; 245 | 75E09ABDBB7A5FEF96B059219C8B2179 /* Headers */ = { 246 | isa = PBXHeadersBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 3ACCD55E39583889F51A817FFB1F8BB2 /* Pods-SVCircularSlider_Example-umbrella.h in Headers */, 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | }; 253 | F9CDC10B2C233B5AC251EE6A9C784BD2 /* Headers */ = { 254 | isa = PBXHeadersBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | A32303B6B62B5A185C6641361F8B06CD /* SVCircularSlider-umbrella.h in Headers */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | /* End PBXHeadersBuildPhase section */ 262 | 263 | /* Begin PBXNativeTarget section */ 264 | 27A647AB98857BC87271034026088153 /* Pods-SVCircularSlider_Example */ = { 265 | isa = PBXNativeTarget; 266 | buildConfigurationList = 6DF66F1A282C7D5B78A28570A8FE6B9C /* Build configuration list for PBXNativeTarget "Pods-SVCircularSlider_Example" */; 267 | buildPhases = ( 268 | 75E09ABDBB7A5FEF96B059219C8B2179 /* Headers */, 269 | 4B33743538F2E1226A612E85C90ADAEE /* Sources */, 270 | 5979CB45B7D5B1E88D3C0BE9DCAA8003 /* Frameworks */, 271 | 617B568DDD3D60B990C9BD3809483FF8 /* Resources */, 272 | ); 273 | buildRules = ( 274 | ); 275 | dependencies = ( 276 | 5198F40734FD7E016E3A41B5C3163343 /* PBXTargetDependency */, 277 | ); 278 | name = "Pods-SVCircularSlider_Example"; 279 | productName = "Pods-SVCircularSlider_Example"; 280 | productReference = 52DCFA6FB41F64E80B761352E54EB6E3 /* Pods_SVCircularSlider_Example.framework */; 281 | productType = "com.apple.product-type.framework"; 282 | }; 283 | B151D5D49D9D86A7731C36BE73C77E3E /* SVCircularSlider */ = { 284 | isa = PBXNativeTarget; 285 | buildConfigurationList = 97DA64E45CA1E37583E034E583290FC5 /* Build configuration list for PBXNativeTarget "SVCircularSlider" */; 286 | buildPhases = ( 287 | F9CDC10B2C233B5AC251EE6A9C784BD2 /* Headers */, 288 | 487A9EFCC440B2BDBE1DE1DA061910B9 /* Sources */, 289 | C0E59FE589682852E0591F6252254C3D /* Frameworks */, 290 | C083CFE9B5F54509E6F3E4E04A81F20F /* Resources */, 291 | ); 292 | buildRules = ( 293 | ); 294 | dependencies = ( 295 | ); 296 | name = SVCircularSlider; 297 | productName = SVCircularSlider; 298 | productReference = A8C9D8627894A1260EFD05A320B09FED /* SVCircularSlider.framework */; 299 | productType = "com.apple.product-type.framework"; 300 | }; 301 | F447C02C9F1DF83231FB551BD9E46E2D /* Pods-SVCircularSlider_Tests */ = { 302 | isa = PBXNativeTarget; 303 | buildConfigurationList = B57D0A624FBB6F1260D5356F1E5D6910 /* Build configuration list for PBXNativeTarget "Pods-SVCircularSlider_Tests" */; 304 | buildPhases = ( 305 | 22D8AB551A740D60E08DA4896F4B1EB0 /* Headers */, 306 | 2DC466093CCE94C9E24BBD8F7F4C8EDD /* Sources */, 307 | 6045CC4660EC40CB023F7EC7666F52FD /* Frameworks */, 308 | 9AAADCCFF3F08AD7DE81BF374F0EDA3A /* Resources */, 309 | ); 310 | buildRules = ( 311 | ); 312 | dependencies = ( 313 | 38DFD0DEE713470F6C3F488477B47B73 /* PBXTargetDependency */, 314 | ); 315 | name = "Pods-SVCircularSlider_Tests"; 316 | productName = "Pods-SVCircularSlider_Tests"; 317 | productReference = 9ADE5759C0E241A8B2CE62C26DBF79D0 /* Pods_SVCircularSlider_Tests.framework */; 318 | productType = "com.apple.product-type.framework"; 319 | }; 320 | /* End PBXNativeTarget section */ 321 | 322 | /* Begin PBXProject section */ 323 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 324 | isa = PBXProject; 325 | attributes = { 326 | LastSwiftUpdateCheck = 1100; 327 | LastUpgradeCheck = 1100; 328 | TargetAttributes = { 329 | B151D5D49D9D86A7731C36BE73C77E3E = { 330 | DevelopmentTeam = K47F9Z9P4D; 331 | LastSwiftMigration = 1170; 332 | }; 333 | }; 334 | }; 335 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 336 | compatibilityVersion = "Xcode 3.2"; 337 | developmentRegion = en; 338 | hasScannedForEncodings = 0; 339 | knownRegions = ( 340 | en, 341 | Base, 342 | ); 343 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 344 | productRefGroup = C37B8474E84EB5B48F61CF4606A88A6A /* Products */; 345 | projectDirPath = ""; 346 | projectRoot = ""; 347 | targets = ( 348 | 27A647AB98857BC87271034026088153 /* Pods-SVCircularSlider_Example */, 349 | F447C02C9F1DF83231FB551BD9E46E2D /* Pods-SVCircularSlider_Tests */, 350 | B151D5D49D9D86A7731C36BE73C77E3E /* SVCircularSlider */, 351 | ); 352 | }; 353 | /* End PBXProject section */ 354 | 355 | /* Begin PBXResourcesBuildPhase section */ 356 | 617B568DDD3D60B990C9BD3809483FF8 /* Resources */ = { 357 | isa = PBXResourcesBuildPhase; 358 | buildActionMask = 2147483647; 359 | files = ( 360 | ); 361 | runOnlyForDeploymentPostprocessing = 0; 362 | }; 363 | 9AAADCCFF3F08AD7DE81BF374F0EDA3A /* Resources */ = { 364 | isa = PBXResourcesBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | ); 368 | runOnlyForDeploymentPostprocessing = 0; 369 | }; 370 | C083CFE9B5F54509E6F3E4E04A81F20F /* Resources */ = { 371 | isa = PBXResourcesBuildPhase; 372 | buildActionMask = 2147483647; 373 | files = ( 374 | ); 375 | runOnlyForDeploymentPostprocessing = 0; 376 | }; 377 | /* End PBXResourcesBuildPhase section */ 378 | 379 | /* Begin PBXSourcesBuildPhase section */ 380 | 2DC466093CCE94C9E24BBD8F7F4C8EDD /* Sources */ = { 381 | isa = PBXSourcesBuildPhase; 382 | buildActionMask = 2147483647; 383 | files = ( 384 | 858DE1AFF9EBC75520927CB24BBA9959 /* Pods-SVCircularSlider_Tests-dummy.m in Sources */, 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | 487A9EFCC440B2BDBE1DE1DA061910B9 /* Sources */ = { 389 | isa = PBXSourcesBuildPhase; 390 | buildActionMask = 2147483647; 391 | files = ( 392 | 520144F217D27A2B0C8156540C673CAC /* SVCircularSlider-dummy.m in Sources */, 393 | 7AAF3126250FBF3300C29B16 /* CircularSlider.swift in Sources */, 394 | ); 395 | runOnlyForDeploymentPostprocessing = 0; 396 | }; 397 | 4B33743538F2E1226A612E85C90ADAEE /* Sources */ = { 398 | isa = PBXSourcesBuildPhase; 399 | buildActionMask = 2147483647; 400 | files = ( 401 | A442A38B7AC3A11BC6AF48F5DF153F7E /* Pods-SVCircularSlider_Example-dummy.m in Sources */, 402 | ); 403 | runOnlyForDeploymentPostprocessing = 0; 404 | }; 405 | /* End PBXSourcesBuildPhase section */ 406 | 407 | /* Begin PBXTargetDependency section */ 408 | 38DFD0DEE713470F6C3F488477B47B73 /* PBXTargetDependency */ = { 409 | isa = PBXTargetDependency; 410 | name = "Pods-SVCircularSlider_Example"; 411 | target = 27A647AB98857BC87271034026088153 /* Pods-SVCircularSlider_Example */; 412 | targetProxy = 363467C820476F7FFE09C78936E10E31 /* PBXContainerItemProxy */; 413 | }; 414 | 5198F40734FD7E016E3A41B5C3163343 /* PBXTargetDependency */ = { 415 | isa = PBXTargetDependency; 416 | name = SVCircularSlider; 417 | target = B151D5D49D9D86A7731C36BE73C77E3E /* SVCircularSlider */; 418 | targetProxy = D25A8686A06F8DABE1E9693A1A584DEB /* PBXContainerItemProxy */; 419 | }; 420 | /* End PBXTargetDependency section */ 421 | 422 | /* Begin XCBuildConfiguration section */ 423 | 1D1803924C98A71A8E11C0365241FD07 /* Release */ = { 424 | isa = XCBuildConfiguration; 425 | baseConfigurationReference = 2F15A184868889E0571C155EC2F512D0 /* Pods-SVCircularSlider_Tests.release.xcconfig */; 426 | buildSettings = { 427 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 428 | CODE_SIGN_IDENTITY = ""; 429 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 430 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 431 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 432 | CURRENT_PROJECT_VERSION = 1; 433 | DEFINES_MODULE = YES; 434 | DYLIB_COMPATIBILITY_VERSION = 1; 435 | DYLIB_CURRENT_VERSION = 1; 436 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 437 | INFOPLIST_FILE = "Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests-Info.plist"; 438 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 439 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 440 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 441 | MACH_O_TYPE = staticlib; 442 | MODULEMAP_FILE = "Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests.modulemap"; 443 | OTHER_LDFLAGS = ""; 444 | OTHER_LIBTOOLFLAGS = ""; 445 | PODS_ROOT = "$(SRCROOT)"; 446 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 447 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 448 | SDKROOT = iphoneos; 449 | SKIP_INSTALL = YES; 450 | TARGETED_DEVICE_FAMILY = "1,2"; 451 | VALIDATE_PRODUCT = YES; 452 | VERSIONING_SYSTEM = "apple-generic"; 453 | VERSION_INFO_PREFIX = ""; 454 | }; 455 | name = Release; 456 | }; 457 | 53496DB33BC2804468C2C7724AC71EF1 /* Release */ = { 458 | isa = XCBuildConfiguration; 459 | baseConfigurationReference = 0D54BDFB7778B425FB446E1885BD22EA /* Pods-SVCircularSlider_Example.release.xcconfig */; 460 | buildSettings = { 461 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 462 | CODE_SIGN_IDENTITY = ""; 463 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 464 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 465 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 466 | CURRENT_PROJECT_VERSION = 1; 467 | DEFINES_MODULE = YES; 468 | DYLIB_COMPATIBILITY_VERSION = 1; 469 | DYLIB_CURRENT_VERSION = 1; 470 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 471 | INFOPLIST_FILE = "Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_Example-Info.plist"; 472 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 473 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 474 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 475 | MACH_O_TYPE = staticlib; 476 | MODULEMAP_FILE = "Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_Example.modulemap"; 477 | OTHER_LDFLAGS = ""; 478 | OTHER_LIBTOOLFLAGS = ""; 479 | PODS_ROOT = "$(SRCROOT)"; 480 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 481 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 482 | SDKROOT = iphoneos; 483 | SKIP_INSTALL = YES; 484 | TARGETED_DEVICE_FAMILY = "1,2"; 485 | VALIDATE_PRODUCT = YES; 486 | VERSIONING_SYSTEM = "apple-generic"; 487 | VERSION_INFO_PREFIX = ""; 488 | }; 489 | name = Release; 490 | }; 491 | 5C8AC79F619FC991FE71FB07B6AB5A3E /* Debug */ = { 492 | isa = XCBuildConfiguration; 493 | baseConfigurationReference = 159E31D31FCA37C8B209AE62FF56EF75 /* Pods-SVCircularSlider_Tests.debug.xcconfig */; 494 | buildSettings = { 495 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 496 | CODE_SIGN_IDENTITY = ""; 497 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 498 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 499 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 500 | CURRENT_PROJECT_VERSION = 1; 501 | DEFINES_MODULE = YES; 502 | DYLIB_COMPATIBILITY_VERSION = 1; 503 | DYLIB_CURRENT_VERSION = 1; 504 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 505 | INFOPLIST_FILE = "Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests-Info.plist"; 506 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 507 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 508 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 509 | MACH_O_TYPE = staticlib; 510 | MODULEMAP_FILE = "Target Support Files/Pods-SVCircularSlider_Tests/Pods-SVCircularSlider_Tests.modulemap"; 511 | OTHER_LDFLAGS = ""; 512 | OTHER_LIBTOOLFLAGS = ""; 513 | PODS_ROOT = "$(SRCROOT)"; 514 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 515 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 516 | SDKROOT = iphoneos; 517 | SKIP_INSTALL = YES; 518 | TARGETED_DEVICE_FAMILY = "1,2"; 519 | VERSIONING_SYSTEM = "apple-generic"; 520 | VERSION_INFO_PREFIX = ""; 521 | }; 522 | name = Debug; 523 | }; 524 | 61C3C7CA8D9AEE03E54A57761A721665 /* Release */ = { 525 | isa = XCBuildConfiguration; 526 | baseConfigurationReference = 671BFBAD18AEB8FFBBF7D95E12F0707E /* SVCircularSlider.release.xcconfig */; 527 | buildSettings = { 528 | CLANG_ENABLE_MODULES = YES; 529 | CODE_SIGN_IDENTITY = "Apple Development"; 530 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 531 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 532 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 533 | CURRENT_PROJECT_VERSION = 1; 534 | DEFINES_MODULE = YES; 535 | DEVELOPMENT_TEAM = K47F9Z9P4D; 536 | DYLIB_COMPATIBILITY_VERSION = 1; 537 | DYLIB_CURRENT_VERSION = 1; 538 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 539 | GCC_PREFIX_HEADER = "Target Support Files/SVCircularSlider/SVCircularSlider-prefix.pch"; 540 | INFOPLIST_FILE = "Target Support Files/SVCircularSlider/SVCircularSlider-Info.plist"; 541 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 542 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 543 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 544 | MODULEMAP_FILE = "Target Support Files/SVCircularSlider/SVCircularSlider.modulemap"; 545 | PRODUCT_MODULE_NAME = SVCircularSlider; 546 | PRODUCT_NAME = SVCircularSlider; 547 | SDKROOT = iphoneos; 548 | SKIP_INSTALL = YES; 549 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 550 | SWIFT_VERSION = 4.0; 551 | TARGETED_DEVICE_FAMILY = "1,2"; 552 | VALIDATE_PRODUCT = YES; 553 | VERSIONING_SYSTEM = "apple-generic"; 554 | VERSION_INFO_PREFIX = ""; 555 | }; 556 | name = Release; 557 | }; 558 | AB969DD5051E58D30380A21EDFE36505 /* Debug */ = { 559 | isa = XCBuildConfiguration; 560 | baseConfigurationReference = 0BB9A3245D3901AEC79680CC972A5CC1 /* SVCircularSlider.debug.xcconfig */; 561 | buildSettings = { 562 | CLANG_ENABLE_MODULES = YES; 563 | CODE_SIGN_IDENTITY = "Apple Development"; 564 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 565 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 566 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 567 | CURRENT_PROJECT_VERSION = 1; 568 | DEFINES_MODULE = YES; 569 | DEVELOPMENT_TEAM = K47F9Z9P4D; 570 | DYLIB_COMPATIBILITY_VERSION = 1; 571 | DYLIB_CURRENT_VERSION = 1; 572 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 573 | GCC_PREFIX_HEADER = "Target Support Files/SVCircularSlider/SVCircularSlider-prefix.pch"; 574 | INFOPLIST_FILE = "Target Support Files/SVCircularSlider/SVCircularSlider-Info.plist"; 575 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 576 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 577 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 578 | MODULEMAP_FILE = "Target Support Files/SVCircularSlider/SVCircularSlider.modulemap"; 579 | PRODUCT_MODULE_NAME = SVCircularSlider; 580 | PRODUCT_NAME = SVCircularSlider; 581 | SDKROOT = iphoneos; 582 | SKIP_INSTALL = YES; 583 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 584 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 585 | SWIFT_VERSION = 4.0; 586 | TARGETED_DEVICE_FAMILY = "1,2"; 587 | VERSIONING_SYSTEM = "apple-generic"; 588 | VERSION_INFO_PREFIX = ""; 589 | }; 590 | name = Debug; 591 | }; 592 | B0087CB4594321EF41619F3181FE120E /* Release */ = { 593 | isa = XCBuildConfiguration; 594 | buildSettings = { 595 | ALWAYS_SEARCH_USER_PATHS = NO; 596 | CLANG_ANALYZER_NONNULL = YES; 597 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 598 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 599 | CLANG_CXX_LIBRARY = "libc++"; 600 | CLANG_ENABLE_MODULES = YES; 601 | CLANG_ENABLE_OBJC_ARC = YES; 602 | CLANG_ENABLE_OBJC_WEAK = YES; 603 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 604 | CLANG_WARN_BOOL_CONVERSION = YES; 605 | CLANG_WARN_COMMA = YES; 606 | CLANG_WARN_CONSTANT_CONVERSION = YES; 607 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 608 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 609 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 610 | CLANG_WARN_EMPTY_BODY = YES; 611 | CLANG_WARN_ENUM_CONVERSION = YES; 612 | CLANG_WARN_INFINITE_RECURSION = YES; 613 | CLANG_WARN_INT_CONVERSION = YES; 614 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 615 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 616 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 617 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 618 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 619 | CLANG_WARN_STRICT_PROTOTYPES = YES; 620 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 621 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 622 | CLANG_WARN_UNREACHABLE_CODE = YES; 623 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 624 | COPY_PHASE_STRIP = NO; 625 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 626 | ENABLE_NS_ASSERTIONS = NO; 627 | ENABLE_STRICT_OBJC_MSGSEND = YES; 628 | GCC_C_LANGUAGE_STANDARD = gnu11; 629 | GCC_NO_COMMON_BLOCKS = YES; 630 | GCC_PREPROCESSOR_DEFINITIONS = ( 631 | "POD_CONFIGURATION_RELEASE=1", 632 | "$(inherited)", 633 | ); 634 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 635 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 636 | GCC_WARN_UNDECLARED_SELECTOR = YES; 637 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 638 | GCC_WARN_UNUSED_FUNCTION = YES; 639 | GCC_WARN_UNUSED_VARIABLE = YES; 640 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 641 | MTL_ENABLE_DEBUG_INFO = NO; 642 | MTL_FAST_MATH = YES; 643 | PRODUCT_NAME = "$(TARGET_NAME)"; 644 | STRIP_INSTALLED_PRODUCT = NO; 645 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 646 | SWIFT_VERSION = 5.0; 647 | SYMROOT = "${SRCROOT}/../build"; 648 | }; 649 | name = Release; 650 | }; 651 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */ = { 652 | isa = XCBuildConfiguration; 653 | buildSettings = { 654 | ALWAYS_SEARCH_USER_PATHS = NO; 655 | CLANG_ANALYZER_NONNULL = YES; 656 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 657 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 658 | CLANG_CXX_LIBRARY = "libc++"; 659 | CLANG_ENABLE_MODULES = YES; 660 | CLANG_ENABLE_OBJC_ARC = YES; 661 | CLANG_ENABLE_OBJC_WEAK = YES; 662 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 663 | CLANG_WARN_BOOL_CONVERSION = YES; 664 | CLANG_WARN_COMMA = YES; 665 | CLANG_WARN_CONSTANT_CONVERSION = YES; 666 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 667 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 668 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 669 | CLANG_WARN_EMPTY_BODY = YES; 670 | CLANG_WARN_ENUM_CONVERSION = YES; 671 | CLANG_WARN_INFINITE_RECURSION = YES; 672 | CLANG_WARN_INT_CONVERSION = YES; 673 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 674 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 675 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 676 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 677 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 678 | CLANG_WARN_STRICT_PROTOTYPES = YES; 679 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 680 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 681 | CLANG_WARN_UNREACHABLE_CODE = YES; 682 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 683 | COPY_PHASE_STRIP = NO; 684 | DEBUG_INFORMATION_FORMAT = dwarf; 685 | ENABLE_STRICT_OBJC_MSGSEND = YES; 686 | ENABLE_TESTABILITY = YES; 687 | GCC_C_LANGUAGE_STANDARD = gnu11; 688 | GCC_DYNAMIC_NO_PIC = NO; 689 | GCC_NO_COMMON_BLOCKS = YES; 690 | GCC_OPTIMIZATION_LEVEL = 0; 691 | GCC_PREPROCESSOR_DEFINITIONS = ( 692 | "POD_CONFIGURATION_DEBUG=1", 693 | "DEBUG=1", 694 | "$(inherited)", 695 | ); 696 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 697 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 698 | GCC_WARN_UNDECLARED_SELECTOR = YES; 699 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 700 | GCC_WARN_UNUSED_FUNCTION = YES; 701 | GCC_WARN_UNUSED_VARIABLE = YES; 702 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 703 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 704 | MTL_FAST_MATH = YES; 705 | ONLY_ACTIVE_ARCH = YES; 706 | PRODUCT_NAME = "$(TARGET_NAME)"; 707 | STRIP_INSTALLED_PRODUCT = NO; 708 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 709 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 710 | SWIFT_VERSION = 5.0; 711 | SYMROOT = "${SRCROOT}/../build"; 712 | }; 713 | name = Debug; 714 | }; 715 | D212012468C37B4C873B7BCBDDE554ED /* Debug */ = { 716 | isa = XCBuildConfiguration; 717 | baseConfigurationReference = 654CF8832C6FA1E4658B4E839B8A851B /* Pods-SVCircularSlider_Example.debug.xcconfig */; 718 | buildSettings = { 719 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = 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-SVCircularSlider_Example/Pods-SVCircularSlider_Example-Info.plist"; 730 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 731 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 732 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 733 | MACH_O_TYPE = staticlib; 734 | MODULEMAP_FILE = "Target Support Files/Pods-SVCircularSlider_Example/Pods-SVCircularSlider_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 | VERSIONING_SYSTEM = "apple-generic"; 744 | VERSION_INFO_PREFIX = ""; 745 | }; 746 | name = Debug; 747 | }; 748 | /* End XCBuildConfiguration section */ 749 | 750 | /* Begin XCConfigurationList section */ 751 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 752 | isa = XCConfigurationList; 753 | buildConfigurations = ( 754 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */, 755 | B0087CB4594321EF41619F3181FE120E /* Release */, 756 | ); 757 | defaultConfigurationIsVisible = 0; 758 | defaultConfigurationName = Release; 759 | }; 760 | 6DF66F1A282C7D5B78A28570A8FE6B9C /* Build configuration list for PBXNativeTarget "Pods-SVCircularSlider_Example" */ = { 761 | isa = XCConfigurationList; 762 | buildConfigurations = ( 763 | D212012468C37B4C873B7BCBDDE554ED /* Debug */, 764 | 53496DB33BC2804468C2C7724AC71EF1 /* Release */, 765 | ); 766 | defaultConfigurationIsVisible = 0; 767 | defaultConfigurationName = Release; 768 | }; 769 | 97DA64E45CA1E37583E034E583290FC5 /* Build configuration list for PBXNativeTarget "SVCircularSlider" */ = { 770 | isa = XCConfigurationList; 771 | buildConfigurations = ( 772 | AB969DD5051E58D30380A21EDFE36505 /* Debug */, 773 | 61C3C7CA8D9AEE03E54A57761A721665 /* Release */, 774 | ); 775 | defaultConfigurationIsVisible = 0; 776 | defaultConfigurationName = Release; 777 | }; 778 | B57D0A624FBB6F1260D5356F1E5D6910 /* Build configuration list for PBXNativeTarget "Pods-SVCircularSlider_Tests" */ = { 779 | isa = XCConfigurationList; 780 | buildConfigurations = ( 781 | 5C8AC79F619FC991FE71FB07B6AB5A3E /* Debug */, 782 | 1D1803924C98A71A8E11C0365241FD07 /* Release */, 783 | ); 784 | defaultConfigurationIsVisible = 0; 785 | defaultConfigurationName = Release; 786 | }; 787 | /* End XCConfigurationList section */ 788 | }; 789 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 790 | } 791 | --------------------------------------------------------------------------------