Showing preview only (207K chars total). Download the full file or copy to clipboard to get everything.
Repository: shushutochako/CircleSlider
Branch: master
Commit: ab85e3027867
Files: 59
Total size: 188.5 KB
Directory structure:
gitextract_i8frsf05/
├── .gitignore
├── .swift-version
├── .travis.yml
├── CircleSlider.podspec
├── Example/
│ ├── CircleSlider/
│ │ ├── AppDelegate.swift
│ │ ├── Base.lproj/
│ │ │ ├── LaunchScreen.xib
│ │ │ └── Main.storyboard
│ │ ├── Images.xcassets/
│ │ │ ├── AppIcon.appiconset/
│ │ │ │ └── Contents.json
│ │ │ ├── Contents.json
│ │ │ ├── button_end.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── button_start.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── button_stop.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── thumb_image_1.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── thumb_image_2.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── thumb_image_3.imageset/
│ │ │ └── Contents.json
│ │ ├── Info.plist
│ │ └── ViewController.swift
│ ├── CircleSlider.xcodeproj/
│ │ ├── project.pbxproj
│ │ ├── project.xcworkspace/
│ │ │ └── contents.xcworkspacedata
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ └── CircleSlider-Example.xcscheme
│ ├── CircleSlider.xcworkspace/
│ │ └── contents.xcworkspacedata
│ ├── Podfile
│ ├── Pods/
│ │ ├── Local Podspecs/
│ │ │ └── CircleSlider.podspec.json
│ │ ├── Pods.xcodeproj/
│ │ │ └── project.pbxproj
│ │ └── Target Support Files/
│ │ ├── CircleSlider/
│ │ │ ├── CircleSlider-dummy.m
│ │ │ ├── CircleSlider-prefix.pch
│ │ │ ├── CircleSlider-umbrella.h
│ │ │ ├── CircleSlider.modulemap
│ │ │ ├── CircleSlider.xcconfig
│ │ │ └── Info.plist
│ │ ├── Pods-CircleSlider_Example/
│ │ │ ├── Info.plist
│ │ │ ├── Pods-CircleSlider_Example-acknowledgements.markdown
│ │ │ ├── Pods-CircleSlider_Example-acknowledgements.plist
│ │ │ ├── Pods-CircleSlider_Example-dummy.m
│ │ │ ├── Pods-CircleSlider_Example-frameworks.sh
│ │ │ ├── Pods-CircleSlider_Example-resources.sh
│ │ │ ├── Pods-CircleSlider_Example-umbrella.h
│ │ │ ├── Pods-CircleSlider_Example.debug.xcconfig
│ │ │ ├── Pods-CircleSlider_Example.modulemap
│ │ │ └── Pods-CircleSlider_Example.release.xcconfig
│ │ └── Pods-CircleSlider_Tests/
│ │ ├── Info.plist
│ │ ├── Pods-CircleSlider_Tests-acknowledgements.markdown
│ │ ├── Pods-CircleSlider_Tests-acknowledgements.plist
│ │ ├── Pods-CircleSlider_Tests-dummy.m
│ │ ├── Pods-CircleSlider_Tests-frameworks.sh
│ │ ├── Pods-CircleSlider_Tests-resources.sh
│ │ ├── Pods-CircleSlider_Tests-umbrella.h
│ │ ├── Pods-CircleSlider_Tests.debug.xcconfig
│ │ ├── Pods-CircleSlider_Tests.modulemap
│ │ └── Pods-CircleSlider_Tests.release.xcconfig
│ └── Tests/
│ ├── Info.plist
│ └── Tests.swift
├── LICENSE
├── Pod/
│ ├── Assets/
│ │ └── .gitkeep
│ └── Classes/
│ ├── .gitkeep
│ ├── CircleSlider.swift
│ ├── Math.swift
│ └── TrackLayer.swift
└── README.md
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
# OS X
.DS_Store
# Xcode
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
profile
*.moved-aside
DerivedData
*.hmap
*.ipa
# Bundler
.bundle
Carthage
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
#
# Note: if you ignore the Pods directory, make sure to uncomment
# `pod install` in .travis.yml
#
# Pods/
================================================
FILE: .swift-version
================================================
3.0
================================================
FILE: .travis.yml
================================================
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild test -workspace Example/CircleSlider.xcworkspace -scheme CircleSlider-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
================================================
FILE: CircleSlider.podspec
================================================
Pod::Spec.new do |s|
s.name = "CircleSlider"
s.version = "0.6.0"
s.summary = "CircleSlider is a Circular slider library. written in pure swift."
s.homepage = "https://github.com/shushutochako/CircleSlider"
s.license = 'MIT'
s.author = { "shushutochako" => "shushutochako22@gmail.com" }
s.source = { :git => "https://github.com/shushutochako/CircleSlider.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/shushutochako'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
end
================================================
FILE: Example/CircleSlider/AppDelegate.swift
================================================
//
// AppDelegate.swift
// CircleSlider
//
// Created by shushutochako on 11/17/2015.
// Copyright (c) 2015 shushutochako. All rights reserved.
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
private func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
return true
}
func applicationWillResignActive(_ application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
func applicationDidEnterBackground(_ application: UIApplication) {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
func applicationWillEnterForeground(_ application: UIApplication) {
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
func applicationWillTerminate(_ application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
}
================================================
FILE: Example/CircleSlider/Base.lproj/LaunchScreen.xib
================================================
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13196" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13173"/>
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view contentMode="scaleToFill" id="iN0-l3-epB">
<rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text=" Copyright (c) 2015 CocoaPods. All rights reserved." textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye">
<rect key="frame" x="20" y="439" width="441" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="CircleSlider" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
<rect key="frame" x="20" y="140" width="441" height="43"/>
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
<nil key="highlightedColor"/>
</label>
</subviews>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/>
<constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/>
<constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/>
<constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/>
<constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/>
<constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/>
</constraints>
<nil key="simulatedStatusBarMetrics"/>
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
<point key="canvasLocation" x="548" y="455"/>
</view>
</objects>
</document>
================================================
FILE: Example/CircleSlider/Base.lproj/Main.storyboard
================================================
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13196" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="vXZ-lx-hvc">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13173"/>
<capability name="Constraints to layout margins" minToolsVersion="6.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="ufC-wZ-h7g">
<objects>
<viewController id="vXZ-lx-hvc" customClass="ViewController" customModule="CircleSlider_Example" customModuleProvider="target" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="jyV-Pf-zRb"/>
<viewControllerLayoutGuide type="bottom" id="2fi-mo-0CV"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="kh9-bI-dsS">
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="wiH-Ad-oaa">
<rect key="frame" x="97.5" y="30" width="180" height="180"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="height" constant="180" id="TGZ-JB-CVM"/>
<constraint firstAttribute="width" constant="180" id="apX-uG-hkX"/>
</constraints>
</view>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="S6g-Km-UMU">
<rect key="frame" x="170" y="103" width="35" height="35"/>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="width" constant="35" id="Kmo-LX-8ee"/>
<constraint firstAttribute="height" constant="35" id="SHI-7i-6f2"/>
</constraints>
<state key="normal" image="button_start"/>
<connections>
<action selector="tapProgress:" destination="vXZ-lx-hvc" eventType="touchUpInside" id="JnL-69-AXY"/>
</connections>
</button>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="SliderValue" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WQz-4U-mDl">
<rect key="frame" x="186" y="220" width="189" height="18"/>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="CircleSlider.value :" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qkc-hT-G2w">
<rect key="frame" x="26" y="220" width="150" height="18"/>
<constraints>
<constraint firstAttribute="width" constant="150" id="kk7-uG-4dX"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="CircleSliderDelegate :" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Wtw-q1-sbv">
<rect key="frame" x="26" y="253" width="150" height="18"/>
<constraints>
<constraint firstAttribute="width" constant="150" id="e3c-0Y-IBD"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="CircleSlider.status :" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KNR-ph-u0d">
<rect key="frame" x="26" y="286" width="150" height="18"/>
<constraints>
<constraint firstAttribute="width" constant="150" id="Bzb-nC-oze"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="noChangeMinValue" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8xo-AZ-oiF">
<rect key="frame" x="185.5" y="286" width="189.5" height="18"/>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Delegate" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Qb3-cB-TZN">
<rect key="frame" x="186" y="253" width="189" height="18"/>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<scrollView multipleTouchEnabled="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" bouncesZoom="NO" translatesAutoresizingMaskIntoConstraints="NO" id="FJW-Z4-Aag">
<rect key="frame" x="0.0" y="319" width="375" height="348"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="wH7-TK-kf7">
<rect key="frame" x="0.0" y="0.0" width="375" height="514"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable Slider" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="beT-UA-667">
<rect key="frame" x="10" y="15" width="100" height="18"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="NcD-cL-Fi8"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="ehn-Xq-YwL"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="7W0-au-5A8">
<rect key="frame" x="120" y="8.5" width="51" height="31"/>
<connections>
<action selector="enableSwitchChanged:" destination="vXZ-lx-hvc" eventType="valueChanged" id="34v-PH-Uk7"/>
</connections>
</switch>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Track Color" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ukk-4N-QYC">
<rect key="frame" x="10" y="63" width="100" height="18"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="EkV-1a-uH1"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="Rg1-sY-5TL"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
</label>
<slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="127" minValue="0.0" maxValue="255" translatesAutoresizingMaskIntoConstraints="NO" id="JRS-Fe-8He">
<rect key="frame" x="118" y="57" width="249" height="31"/>
<connections>
<action selector="trackingColorChanged:" destination="vXZ-lx-hvc" eventType="valueChanged" id="6ev-t6-9Fi"/>
</connections>
</slider>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Bar Color" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wio-Iq-65L">
<rect key="frame" x="10" y="111" width="100" height="18"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="DSw-gz-wJU"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="vk9-tS-RSd"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="127" minValue="0.0" maxValue="255" translatesAutoresizingMaskIntoConstraints="NO" id="UeE-kC-5y6">
<rect key="frame" x="118" y="105" width="249" height="31"/>
<connections>
<action selector="barColorChanged:" destination="vXZ-lx-hvc" eventType="valueChanged" id="j8c-7a-bdf"/>
</connections>
</slider>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5vs-Bc-og4">
<rect key="frame" x="10" y="159" width="100" height="33.5"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="HNx-aa-Mta"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="Jje-uk-Kjh"/>
</constraints>
<string key="text">Thumb Color
(No Image)</string>
<fontDescription key="fontDescription" type="system" pointSize="14"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="127" minValue="0.0" maxValue="255" translatesAutoresizingMaskIntoConstraints="NO" id="9qO-Kd-Tn3">
<rect key="frame" x="118" y="161" width="249" height="31"/>
<connections>
<action selector="thumbColorChanged:" destination="vXZ-lx-hvc" eventType="valueChanged" id="qSP-di-3Rd"/>
</connections>
</slider>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Bar Width" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8jf-T4-wYU">
<rect key="frame" x="10" y="222.5" width="100" height="18"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="15I-af-3y4"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="Zmq-Ag-q9g"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
</label>
<slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="30" minValue="10" maxValue="50" translatesAutoresizingMaskIntoConstraints="NO" id="6ow-7V-DKj">
<rect key="frame" x="118" y="216" width="249" height="31"/>
<connections>
<action selector="barWidthChanged:" destination="vXZ-lx-hvc" eventType="valueChanged" id="H8C-6B-2N9"/>
</connections>
</slider>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Thumb Width" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="uti-gZ-R0l">
<rect key="frame" x="10" y="270.5" width="100" height="18"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="3Ih-0G-GXn"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="lJ6-AR-NOY"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
</label>
<slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="40" minValue="20" maxValue="60" translatesAutoresizingMaskIntoConstraints="NO" id="BC0-rC-j4x">
<rect key="frame" x="118" y="264" width="249" height="31"/>
<connections>
<action selector="thumbWidthChanged:" destination="vXZ-lx-hvc" eventType="valueChanged" id="Gi7-Xg-wvW"/>
</connections>
</slider>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="View Inset" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jLd-3I-s7p">
<rect key="frame" x="10" y="366.5" width="100" height="18"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="Fd1-yp-iPW"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="W8L-xx-UQ5"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
</label>
<slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="20" minValue="0.0" maxValue="40" translatesAutoresizingMaskIntoConstraints="NO" id="dmr-jf-erE">
<rect key="frame" x="118" y="360" width="249" height="31"/>
<connections>
<action selector="viewInsetChanged:" destination="vXZ-lx-hvc" eventType="valueChanged" id="21F-Mf-BfY"/>
</connections>
</slider>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Start Angle" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eHS-ww-cET">
<rect key="frame" x="10" y="414.5" width="100" height="18"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="EVa-af-KGc"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="PBL-Ae-pap"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="0.5" minValue="0.0" maxValue="360" translatesAutoresizingMaskIntoConstraints="NO" id="1XU-4h-uPu">
<rect key="frame" x="118" y="408" width="249" height="31"/>
<connections>
<action selector="startAngle:" destination="vXZ-lx-hvc" eventType="valueChanged" id="67B-TL-Knh"/>
</connections>
</slider>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Thumb Image" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="yNx-Om-ZmF">
<rect key="frame" x="10" y="462.5" width="100" height="18"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="5jb-K8-Tpa"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="100" id="jHf-dT-1kH"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="QVj-BM-p8y">
<rect key="frame" x="120" y="456.5" width="30" height="30"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="4ZA-4H-dz3"/>
<constraint firstAttribute="width" constant="30" id="Ggs-Ee-4ut"/>
</constraints>
<state key="normal" image="thumb_image_1"/>
<connections>
<action selector="thumbImage1BtnTapped:" destination="vXZ-lx-hvc" eventType="touchUpInside" id="pSB-se-pxc"/>
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="m4l-Yy-BhN">
<rect key="frame" x="170" y="456.5" width="30" height="30"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="Myt-bR-GfD"/>
<constraint firstAttribute="width" constant="30" id="dfV-wx-7Np"/>
</constraints>
<state key="normal" image="thumb_image_2"/>
<connections>
<action selector="thumbImage2BtnTapped:" destination="vXZ-lx-hvc" eventType="touchUpInside" id="AeQ-DG-2NQ"/>
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="w7W-rE-TNV">
<rect key="frame" x="220" y="456.5" width="30" height="30"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="g3W-eM-Y0g"/>
<constraint firstAttribute="width" constant="30" id="hGf-85-lf3"/>
</constraints>
<state key="normal" image="thumb_image_3"/>
<connections>
<action selector="thumbImage3BtnTapped:" destination="vXZ-lx-hvc" eventType="touchUpInside" id="OhP-mF-4lV"/>
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="ZXC-2m-pMg">
<rect key="frame" x="270" y="446.5" width="50" height="50"/>
<constraints>
<constraint firstAttribute="height" constant="50" id="GNv-TT-4PX"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="50" id="qId-kG-H8X"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal">
<string key="title"> No
Image</string>
<color key="titleColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</state>
<connections>
<action selector="thumbNoImageBtnTapped:" destination="vXZ-lx-hvc" eventType="touchUpInside" id="OpC-cy-3lO"/>
</connections>
</button>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Thumb Position" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="p4J-9q-IGY">
<rect key="frame" x="0.0" y="318.5" width="110" height="18"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="110" id="FzE-GM-MBW"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="0.5" minValue="0.0" maxValue="1" translatesAutoresizingMaskIntoConstraints="NO" id="i34-dT-t7s">
<rect key="frame" x="118" y="313" width="249" height="31"/>
<connections>
<action selector="thumbPositionChanged:" destination="vXZ-lx-hvc" eventType="valueChanged" id="8qd-Rl-d4b"/>
</connections>
</slider>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstItem="m4l-Yy-BhN" firstAttribute="centerY" secondItem="yNx-Om-ZmF" secondAttribute="centerY" id="19C-8f-Sto"/>
<constraint firstItem="5vs-Bc-og4" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="1Me-aQ-gns"/>
<constraint firstItem="i34-dT-t7s" firstAttribute="leading" secondItem="p4J-9q-IGY" secondAttribute="trailing" constant="10" id="2YD-ib-LE5"/>
<constraint firstAttribute="trailing" secondItem="6ow-7V-DKj" secondAttribute="trailing" constant="10" id="4RK-Mc-5n8"/>
<constraint firstAttribute="trailing" secondItem="JRS-Fe-8He" secondAttribute="trailing" constant="10" id="6lB-Yn-qka"/>
<constraint firstItem="UeE-kC-5y6" firstAttribute="leading" secondItem="wio-Iq-65L" secondAttribute="trailing" constant="10" id="73u-RW-Nmr"/>
<constraint firstItem="Ukk-4N-QYC" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="7Ws-2s-IJH"/>
<constraint firstItem="beT-UA-667" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="7vU-Q2-kA2"/>
<constraint firstItem="yNx-Om-ZmF" firstAttribute="top" secondItem="eHS-ww-cET" secondAttribute="bottom" constant="30" id="7yr-hV-BOK"/>
<constraint firstItem="yNx-Om-ZmF" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="9Nj-O7-PQU"/>
<constraint firstItem="eHS-ww-cET" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="ASa-6R-J4K"/>
<constraint firstItem="uti-gZ-R0l" firstAttribute="top" secondItem="8jf-T4-wYU" secondAttribute="bottom" constant="30" id="BSv-gV-W6I"/>
<constraint firstItem="7W0-au-5A8" firstAttribute="centerY" secondItem="beT-UA-667" secondAttribute="centerY" id="Bfr-pP-VzC"/>
<constraint firstItem="i34-dT-t7s" firstAttribute="centerY" secondItem="p4J-9q-IGY" secondAttribute="centerY" id="BuJ-8b-KOr"/>
<constraint firstItem="9qO-Kd-Tn3" firstAttribute="centerY" secondItem="5vs-Bc-og4" secondAttribute="centerY" id="CBq-O8-W9f"/>
<constraint firstItem="UeE-kC-5y6" firstAttribute="centerY" secondItem="wio-Iq-65L" secondAttribute="centerY" id="Dn5-pu-AAo"/>
<constraint firstAttribute="trailing" secondItem="dmr-jf-erE" secondAttribute="trailing" constant="10" id="HnO-GE-AZj"/>
<constraint firstItem="6ow-7V-DKj" firstAttribute="leading" secondItem="8jf-T4-wYU" secondAttribute="trailing" constant="10" id="ICS-OS-duI"/>
<constraint firstItem="QVj-BM-p8y" firstAttribute="centerY" secondItem="yNx-Om-ZmF" secondAttribute="centerY" id="IhZ-Th-sxB"/>
<constraint firstAttribute="trailing" secondItem="ZXC-2m-pMg" secondAttribute="trailing" constant="55" id="Nlf-hR-EY0"/>
<constraint firstItem="p4J-9q-IGY" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" id="PbA-ov-0xM"/>
<constraint firstAttribute="trailing" secondItem="UeE-kC-5y6" secondAttribute="trailing" constant="10" id="R4J-8b-7kl"/>
<constraint firstAttribute="trailing" secondItem="BC0-rC-j4x" secondAttribute="trailing" constant="10" id="R6s-Xj-gcG"/>
<constraint firstAttribute="trailing" secondItem="i34-dT-t7s" secondAttribute="trailing" constant="10" id="TH7-cL-kCO"/>
<constraint firstItem="8jf-T4-wYU" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="YDu-Jd-3YD"/>
<constraint firstItem="w7W-rE-TNV" firstAttribute="centerY" secondItem="yNx-Om-ZmF" secondAttribute="centerY" id="YGI-hR-ajP"/>
<constraint firstItem="BC0-rC-j4x" firstAttribute="leading" secondItem="uti-gZ-R0l" secondAttribute="trailing" constant="10" id="YYd-HQ-Qkx"/>
<constraint firstItem="p4J-9q-IGY" firstAttribute="top" secondItem="uti-gZ-R0l" secondAttribute="bottom" constant="30" id="ZFx-eJ-KQj"/>
<constraint firstItem="w7W-rE-TNV" firstAttribute="leading" secondItem="m4l-Yy-BhN" secondAttribute="trailing" constant="20" id="Zcg-bX-ufh"/>
<constraint firstItem="eHS-ww-cET" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="aIp-65-ZUe"/>
<constraint firstItem="JRS-Fe-8He" firstAttribute="leading" secondItem="Ukk-4N-QYC" secondAttribute="trailing" constant="10" id="bHB-cp-UZj"/>
<constraint firstItem="Ukk-4N-QYC" firstAttribute="top" secondItem="beT-UA-667" secondAttribute="bottom" constant="30" id="bZt-IL-MAf"/>
<constraint firstItem="BC0-rC-j4x" firstAttribute="centerY" secondItem="uti-gZ-R0l" secondAttribute="centerY" id="bib-lz-4tq"/>
<constraint firstItem="dmr-jf-erE" firstAttribute="leading" secondItem="jLd-3I-s7p" secondAttribute="trailing" constant="10" id="cbC-jf-1cb"/>
<constraint firstAttribute="trailing" secondItem="1XU-4h-uPu" secondAttribute="trailing" constant="10" id="cqn-c2-e4R"/>
<constraint firstItem="JRS-Fe-8He" firstAttribute="centerY" secondItem="Ukk-4N-QYC" secondAttribute="centerY" id="d8J-Su-NRm"/>
<constraint firstItem="wio-Iq-65L" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="dWY-NY-khO"/>
<constraint firstItem="9qO-Kd-Tn3" firstAttribute="leading" secondItem="5vs-Bc-og4" secondAttribute="trailing" constant="10" id="dci-Vd-NTh"/>
<constraint firstItem="jLd-3I-s7p" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="eQY-am-iuU"/>
<constraint firstItem="ZXC-2m-pMg" firstAttribute="centerY" secondItem="yNx-Om-ZmF" secondAttribute="centerY" id="eTH-tc-Ew0"/>
<constraint firstItem="jLd-3I-s7p" firstAttribute="top" secondItem="p4J-9q-IGY" secondAttribute="bottom" constant="30" id="fIu-sg-lEl"/>
<constraint firstAttribute="height" constant="514" id="hHk-jh-OJU"/>
<constraint firstItem="6ow-7V-DKj" firstAttribute="centerY" secondItem="8jf-T4-wYU" secondAttribute="centerY" id="jEW-uo-hhV"/>
<constraint firstItem="wio-Iq-65L" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="jpO-e1-7P3"/>
<constraint firstAttribute="trailing" secondItem="9qO-Kd-Tn3" secondAttribute="trailing" constant="10" id="jvA-c4-XlS"/>
<constraint firstItem="1XU-4h-uPu" firstAttribute="leading" secondItem="eHS-ww-cET" secondAttribute="trailing" constant="10" id="jwu-V4-M9D"/>
<constraint firstItem="dmr-jf-erE" firstAttribute="centerY" secondItem="jLd-3I-s7p" secondAttribute="centerY" id="lZi-oN-RcN"/>
<constraint firstItem="1XU-4h-uPu" firstAttribute="centerY" secondItem="eHS-ww-cET" secondAttribute="centerY" id="nd3-AO-T84"/>
<constraint firstItem="8jf-T4-wYU" firstAttribute="top" secondItem="5vs-Bc-og4" secondAttribute="bottom" constant="30" id="oUb-Ju-cgg"/>
<constraint firstItem="m4l-Yy-BhN" firstAttribute="leading" secondItem="QVj-BM-p8y" secondAttribute="trailing" constant="20" id="ojt-Ph-IeF"/>
<constraint firstItem="8jf-T4-wYU" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="quo-Ss-te7"/>
<constraint firstItem="QVj-BM-p8y" firstAttribute="leading" secondItem="yNx-Om-ZmF" secondAttribute="trailing" constant="10" id="rai-Hl-sax"/>
<constraint firstItem="ZXC-2m-pMg" firstAttribute="leading" secondItem="w7W-rE-TNV" secondAttribute="trailing" constant="20" id="ru6-OA-IOl"/>
<constraint firstItem="wio-Iq-65L" firstAttribute="top" secondItem="Ukk-4N-QYC" secondAttribute="bottom" constant="30" id="saC-vD-7KK"/>
<constraint firstItem="eHS-ww-cET" firstAttribute="top" secondItem="jLd-3I-s7p" secondAttribute="bottom" constant="30" id="t4O-Yb-cEh"/>
<constraint firstItem="5vs-Bc-og4" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="tKN-KC-emp"/>
<constraint firstItem="jLd-3I-s7p" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="uIl-mv-bzD"/>
<constraint firstItem="uti-gZ-R0l" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="v7M-iG-cFt"/>
<constraint firstItem="uti-gZ-R0l" firstAttribute="leading" secondItem="wH7-TK-kf7" secondAttribute="leading" constant="10" id="vh2-bt-EOb"/>
<constraint firstItem="5vs-Bc-og4" firstAttribute="top" secondItem="wio-Iq-65L" secondAttribute="bottom" constant="30" id="vpG-Fj-4u0"/>
<constraint firstItem="beT-UA-667" firstAttribute="top" secondItem="wH7-TK-kf7" secondAttribute="top" constant="15" id="wbf-Qy-rwk"/>
<constraint firstItem="7W0-au-5A8" firstAttribute="leading" secondItem="beT-UA-667" secondAttribute="trailing" constant="10" id="yhw-QE-sxg"/>
</constraints>
</view>
</subviews>
<constraints>
<constraint firstItem="wH7-TK-kf7" firstAttribute="top" secondItem="FJW-Z4-Aag" secondAttribute="top" id="0Wy-ji-WJH"/>
<constraint firstItem="wH7-TK-kf7" firstAttribute="width" secondItem="FJW-Z4-Aag" secondAttribute="width" id="4RP-rd-oHi"/>
<constraint firstAttribute="bottom" secondItem="wH7-TK-kf7" secondAttribute="bottom" id="YvD-fU-zZL"/>
<constraint firstAttribute="trailing" secondItem="wH7-TK-kf7" secondAttribute="trailing" id="aQf-sK-Usc"/>
<constraint firstItem="wH7-TK-kf7" firstAttribute="leading" secondItem="FJW-Z4-Aag" secondAttribute="leading" id="gxn-8I-7f1"/>
</constraints>
</scrollView>
</subviews>
<color key="backgroundColor" red="0.9448208212852478" green="0.9448208212852478" blue="0.9448208212852478" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="trailing" secondItem="WQz-4U-mDl" secondAttribute="trailing" id="1KA-LQ-5PT"/>
<constraint firstItem="Qb3-cB-TZN" firstAttribute="top" secondItem="WQz-4U-mDl" secondAttribute="bottom" constant="15" id="8zY-Js-0Bj"/>
<constraint firstItem="wiH-Ad-oaa" firstAttribute="top" secondItem="jyV-Pf-zRb" secondAttribute="bottom" constant="10" id="9BC-t9-ATl"/>
<constraint firstItem="KNR-ph-u0d" firstAttribute="leading" secondItem="qkc-hT-G2w" secondAttribute="leading" id="ADR-m0-869"/>
<constraint firstItem="FJW-Z4-Aag" firstAttribute="leading" secondItem="kh9-bI-dsS" secondAttribute="leading" id="Bn7-n5-Lsk"/>
<constraint firstItem="S6g-Km-UMU" firstAttribute="centerX" secondItem="wiH-Ad-oaa" secondAttribute="centerX" id="Ca7-Ga-gcA"/>
<constraint firstItem="S6g-Km-UMU" firstAttribute="centerY" secondItem="wiH-Ad-oaa" secondAttribute="centerY" id="D0F-1H-Aj4"/>
<constraint firstItem="wiH-Ad-oaa" firstAttribute="centerX" secondItem="kh9-bI-dsS" secondAttribute="centerX" id="Faq-At-ho4"/>
<constraint firstItem="8xo-AZ-oiF" firstAttribute="top" secondItem="Qb3-cB-TZN" secondAttribute="bottom" constant="15" id="GRD-H3-lSg"/>
<constraint firstItem="KNR-ph-u0d" firstAttribute="top" secondItem="Wtw-q1-sbv" secondAttribute="bottom" constant="15" id="JLf-k0-sIU"/>
<constraint firstItem="8xo-AZ-oiF" firstAttribute="leading" secondItem="KNR-ph-u0d" secondAttribute="trailing" constant="10" id="Lrd-v5-kDg"/>
<constraint firstItem="qkc-hT-G2w" firstAttribute="top" secondItem="wiH-Ad-oaa" secondAttribute="bottom" constant="10" id="Lz9-of-lgR"/>
<constraint firstItem="FJW-Z4-Aag" firstAttribute="top" secondItem="KNR-ph-u0d" secondAttribute="bottom" constant="15" id="Ogg-gY-XNw"/>
<constraint firstAttribute="trailing" secondItem="Qb3-cB-TZN" secondAttribute="trailing" id="WQI-MM-ZVf"/>
<constraint firstAttribute="bottom" secondItem="FJW-Z4-Aag" secondAttribute="bottom" id="cA4-fg-CTo"/>
<constraint firstItem="WQz-4U-mDl" firstAttribute="top" secondItem="wiH-Ad-oaa" secondAttribute="bottom" constant="10" id="cqe-UR-EcZ"/>
<constraint firstAttribute="trailing" secondItem="FJW-Z4-Aag" secondAttribute="trailing" id="dg0-aq-oIm"/>
<constraint firstItem="Wtw-q1-sbv" firstAttribute="leading" secondItem="qkc-hT-G2w" secondAttribute="leading" id="evm-qL-gNv"/>
<constraint firstItem="WQz-4U-mDl" firstAttribute="leading" secondItem="qkc-hT-G2w" secondAttribute="trailing" constant="10" id="gYl-D1-8p1"/>
<constraint firstItem="Wtw-q1-sbv" firstAttribute="top" secondItem="qkc-hT-G2w" secondAttribute="bottom" constant="15" id="gkO-5C-jog"/>
<constraint firstItem="qkc-hT-G2w" firstAttribute="leading" secondItem="kh9-bI-dsS" secondAttribute="leadingMargin" constant="10" id="neR-UB-YRV"/>
<constraint firstItem="Qb3-cB-TZN" firstAttribute="leading" secondItem="Wtw-q1-sbv" secondAttribute="trailing" constant="10" id="utu-y1-Nx3"/>
<constraint firstAttribute="trailing" secondItem="8xo-AZ-oiF" secondAttribute="trailing" id="y8m-bU-O9N"/>
</constraints>
</view>
<connections>
<outlet property="delegateLabel" destination="Qb3-cB-TZN" id="3Rf-T5-aiG"/>
<outlet property="sliderArea" destination="wiH-Ad-oaa" id="ku4-vA-MDL"/>
<outlet property="statusLabel" destination="8xo-AZ-oiF" id="Cnk-VF-W59"/>
<outlet property="tapProgressButton" destination="S6g-Km-UMU" id="sk1-wd-saU"/>
<outlet property="valueLabel" destination="WQz-4U-mDl" id="ZyZ-gY-hYH"/>
</connections>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="x5A-6p-PRh" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="332" y="304.4977511244378"/>
</scene>
</scenes>
<resources>
<image name="button_start" width="79" height="90"/>
<image name="thumb_image_1" width="396" height="396"/>
<image name="thumb_image_2" width="396" height="402"/>
<image name="thumb_image_3" width="41" height="41"/>
</resources>
</document>
================================================
FILE: Example/CircleSlider/Images.xcassets/AppIcon.appiconset/Contents.json
================================================
{
"images" : [
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "3x"
},
{
"idiom" : "ios-marketing",
"size" : "1024x1024",
"scale" : "1x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/CircleSlider/Images.xcassets/Contents.json
================================================
{
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/CircleSlider/Images.xcassets/button_end.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "button_end.png"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/CircleSlider/Images.xcassets/button_start.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "button_start.pdf"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/CircleSlider/Images.xcassets/button_stop.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "button_stop.pdf"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/CircleSlider/Images.xcassets/thumb_image_1.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "thumb_image_1.pdf"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/CircleSlider/Images.xcassets/thumb_image_2.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "thumb_image_2.pdf"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/CircleSlider/Images.xcassets/thumb_image_3.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "thumb_image.pdf"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/CircleSlider/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.6.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
</array>
</dict>
</plist>
================================================
FILE: Example/CircleSlider/ViewController.swift
================================================
//
// ViewController.swift
// CircleSlider
//
// Created by shushutochako on 11/17/2015.
// Copyright (c) 2015 shushutochako. All rights reserved.
//
import UIKit
import CircleSlider
class ViewController: UIViewController {
@IBOutlet weak var sliderArea: UIView!
@IBOutlet weak var tapProgressButton: UIButton!
@IBOutlet weak var valueLabel: UILabel!
@IBOutlet weak var delegateLabel: UILabel!
@IBOutlet weak var statusLabel: UILabel!
private var circleSlider: CircleSlider!
private var timer: Timer?
private var minValue: Float = 20
private var maxValue: Float = 100
private var sliderOptions: [CircleSliderOption] {
return [
CircleSliderOption.barColor(UIColor(red: 127 / 255, green: 244 / 255, blue: 23 / 255, alpha: 1)),
CircleSliderOption.thumbColor(UIColor(red: 127 / 255, green: 185 / 255, blue: 204 / 255, alpha: 1)),
CircleSliderOption.trackingColor(UIColor(red: 78 / 255, green: 136 / 255, blue: 185 / 255, alpha: 1)),
CircleSliderOption.barWidth(20),
CircleSliderOption.startAngle(0),
CircleSliderOption.maxValue(self.maxValue),
CircleSliderOption.minValue(self.minValue),
CircleSliderOption.thumbImage(UIImage(named: "thumb_image_1")!)
]
}
private var progressOptions: [CircleSliderOption] {
return [
.barColor(UIColor(red: 255 / 255, green: 190 / 255, blue: 190 / 255, alpha: 1)),
.trackingColor(UIColor(red: 159 / 255, green: 0 / 255, blue: 0 / 255, alpha: 1)),
.barWidth(30),
.sliderEnabled(false)
]
}
override func viewDidLoad() {
super.viewDidLoad()
buildCircleSlider()
}
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
circleSlider.frame = sliderArea.bounds
}
private func buildCircleSlider() {
circleSlider = CircleSlider(frame: sliderArea.bounds, options: sliderOptions)
circleSlider?.addTarget(self, action: #selector(valueChange(sender:)), for: .valueChanged)
sliderArea.addSubview(circleSlider!)
circleSlider.delegate = self
}
@objc func valueChange(sender: CircleSlider) {
valueLabel.text = "\(Int(sender.value))"
changeButtonImage(circleSlider.status)
}
@IBAction func tapProgress(_: AnyObject) {
switch circleSlider.status {
case CircleSliderStatus.noChangeMinValue:
timer = Timer.scheduledTimer(timeInterval: 0.02, target: self, selector: #selector(fire(timer:)), userInfo: nil, repeats: true)
case CircleSliderStatus.reachedMaxValue:
tapProgressButton.setImage(UIImage(named: "button_start"), for: UIControlState.normal)
circleSlider.value = minValue
timer = Timer.scheduledTimer(timeInterval: 0.02, target: self, selector: #selector(fire(timer:)), userInfo: nil, repeats: true)
case CircleSliderStatus.inProgressChangeValue:
if (timer?.isValid)! {
tapProgressButton.setImage(UIImage(named: "button_start"), for: UIControlState.normal)
timer?.invalidate()
} else {
tapProgressButton.setImage(UIImage(named: "button_stop"), for: UIControlState.normal)
timer = Timer.scheduledTimer(timeInterval: 0.02, target: self, selector: #selector(fire(timer:)), userInfo: nil, repeats: true)
}
}
}
@objc func fire(timer _: Timer) {
circleSlider.value += 0.5
changeButtonImage(circleSlider.status)
}
private func changeButtonImage(_ status: CircleSliderStatus) {
switch status {
case CircleSliderStatus.noChangeMinValue:
tapProgressButton.setImage(UIImage(named: "button_start"), for: UIControlState.normal)
statusLabel.text = "noChangeMinValue"
case CircleSliderStatus.inProgressChangeValue:
tapProgressButton.setImage(UIImage(named: "button_stop"), for: UIControlState.normal)
statusLabel.text = "inProgressChangeValue"
case CircleSliderStatus.reachedMaxValue:
tapProgressButton.setImage(UIImage(named: "button_end"), for: UIControlState.normal)
statusLabel.text = "reachedMaxValue"
timer?.invalidate()
timer = nil
}
}
@IBAction func enableSwitchChanged(_ sender: Any) {
let lastValue = circleSlider.value
circleSlider.changeOptions([.sliderEnabled((sender as! UISwitch).isOn)])
circleSlider.value = lastValue
}
@IBAction func trackingColorChanged(_ sender: AnyObject) {
let redValue = CGFloat((sender as! UISlider).value) / 255
let newColor = UIColor(red: redValue, green: 136 / 255, blue: 185 / 255, alpha: 1)
let lastValue = circleSlider.value
circleSlider.changeOptions([.trackingColor(newColor)])
circleSlider.value = lastValue
}
@IBAction func barColorChanged(_ sender: Any) {
let redValue = CGFloat((sender as! UISlider).value) / 255
let newColor = UIColor(red: redValue, green: 244 / 255, blue: 23 / 255, alpha: 1)
let lastValue = circleSlider.value
circleSlider.changeOptions([.barColor(newColor)])
circleSlider.value = lastValue
}
@IBAction func thumbColorChanged(_ sender: Any) {
let redValue = CGFloat((sender as! UISlider).value) / 255
let newColor = UIColor(red: redValue, green: 185 / 255, blue: 204 / 255, alpha: 1)
let lastValue = circleSlider.value
circleSlider.changeOptions([.thumbColor(newColor)])
circleSlider.value = lastValue
}
@IBAction func barWidthChanged(_ sender: AnyObject) {
let lastValue = circleSlider.value
circleSlider.changeOptions([.barWidth(CGFloat((sender as! UISlider).value))])
circleSlider.value = lastValue
}
@IBAction func thumbWidthChanged(_ sender: AnyObject) {
let lastValue = circleSlider.value
circleSlider.changeOptions([.thumbWidth(CGFloat((sender as! UISlider).value))])
circleSlider.value = lastValue
}
@IBAction func viewInsetChanged(_ sender: AnyObject) {
let lastValue = circleSlider.value
circleSlider.changeOptions([.viewInset(CGFloat((sender as! UISlider).value))])
circleSlider.value = lastValue
}
@IBAction func startAngle(_ sender: Any) {
let lastValue = circleSlider.value
circleSlider.changeOptions([.startAngle(Double((sender as! UISlider).value))])
circleSlider.value = lastValue
}
@IBAction func thumbImage1BtnTapped(_: Any) {
let lastValue = circleSlider.value
circleSlider.changeOptions([.thumbImage(UIImage(named: "thumb_image_1")!)])
circleSlider.value = lastValue
}
@IBAction func thumbImage2BtnTapped(_: Any) {
let lastValue = circleSlider.value
circleSlider.changeOptions([.thumbImage(UIImage(named: "thumb_image_2")!)])
circleSlider.value = lastValue
}
@IBAction func thumbImage3BtnTapped(_: Any) {
let lastValue = circleSlider.value
circleSlider.changeOptions([.thumbImage(UIImage(named: "thumb_image_3")!)])
circleSlider.value = lastValue
}
@IBAction func thumbNoImageBtnTapped(_: Any) {
let lastValue = circleSlider.value
circleSlider.changeOptions([.thumbImage(nil)])
circleSlider.value = lastValue
}
@IBAction func thumbPositionChanged(_ sender: Any) {
let lastValue = circleSlider.value
circleSlider.changeOptions([.thumbPosition(Float((sender as! UISlider).value))])
circleSlider.value = lastValue
}
}
extension ViewController: CircleSliderDelegate {
func didStartChangeValue() {
delegateLabel.text = "didStartChangeValue"
}
func didReachedMaxValue() {
delegateLabel.text = "didReachedMaxValue"
}
}
================================================
FILE: Example/CircleSlider.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; };
607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; };
607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; };
607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; };
607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; };
607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; };
658C975683BDF1762D941177 /* Pods_CircleSlider_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 94CA1A2D1D0C805EFE523E5C /* Pods_CircleSlider_Example.framework */; };
90A5B1568ED00F0E7C0FB8EF /* Pods_CircleSlider_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A56BFB830D9D0DFB8307FBFC /* Pods_CircleSlider_Tests.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 607FACC81AFB9204008FA782 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 607FACCF1AFB9204008FA782;
remoteInfo = CircleSlider;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
5204AEF712DEA2ED1A682562 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
56D23B4A232CDBC81D5AA21D /* Pods-CircleSlider_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CircleSlider_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests.debug.xcconfig"; sourceTree = "<group>"; };
607FACD01AFB9204008FA782 /* CircleSlider_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CircleSlider_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
607FACE51AFB9204008FA782 /* CircleSlider_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CircleSlider_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = "<group>"; };
6F53932EDF83B3CD75A7F6AA /* CircleSlider.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CircleSlider.podspec; path = ../CircleSlider.podspec; sourceTree = "<group>"; };
77D2050CAC5F5D44AD79F6C4 /* Pods-CircleSlider_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CircleSlider_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests.release.xcconfig"; sourceTree = "<group>"; };
9312A4C29FD716957B7E8A17 /* Pods-CircleSlider_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CircleSlider_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example.debug.xcconfig"; sourceTree = "<group>"; };
94CA1A2D1D0C805EFE523E5C /* Pods_CircleSlider_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CircleSlider_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A56BFB830D9D0DFB8307FBFC /* Pods_CircleSlider_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CircleSlider_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DBE22831791D4DDA6F49A8BE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
FB250602577B0817FF2027F7 /* Pods-CircleSlider_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CircleSlider_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example.release.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
607FACCD1AFB9204008FA782 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
658C975683BDF1762D941177 /* Pods_CircleSlider_Example.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
607FACE21AFB9204008FA782 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
90A5B1568ED00F0E7C0FB8EF /* Pods_CircleSlider_Tests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
607FACC71AFB9204008FA782 = {
isa = PBXGroup;
children = (
607FACF51AFB993E008FA782 /* Podspec Metadata */,
607FACD21AFB9204008FA782 /* Example for CircleSlider */,
607FACE81AFB9204008FA782 /* Tests */,
607FACD11AFB9204008FA782 /* Products */,
A5ACA027A8B258C18262C54F /* Pods */,
76F2CBD6B086068199AF2429 /* Frameworks */,
);
sourceTree = "<group>";
};
607FACD11AFB9204008FA782 /* Products */ = {
isa = PBXGroup;
children = (
607FACD01AFB9204008FA782 /* CircleSlider_Example.app */,
607FACE51AFB9204008FA782 /* CircleSlider_Tests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
607FACD21AFB9204008FA782 /* Example for CircleSlider */ = {
isa = PBXGroup;
children = (
607FACD51AFB9204008FA782 /* AppDelegate.swift */,
607FACD71AFB9204008FA782 /* ViewController.swift */,
607FACD91AFB9204008FA782 /* Main.storyboard */,
607FACDC1AFB9204008FA782 /* Images.xcassets */,
607FACDE1AFB9204008FA782 /* LaunchScreen.xib */,
607FACD31AFB9204008FA782 /* Supporting Files */,
);
name = "Example for CircleSlider";
path = CircleSlider;
sourceTree = "<group>";
};
607FACD31AFB9204008FA782 /* Supporting Files */ = {
isa = PBXGroup;
children = (
607FACD41AFB9204008FA782 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
607FACE81AFB9204008FA782 /* Tests */ = {
isa = PBXGroup;
children = (
607FACEB1AFB9204008FA782 /* Tests.swift */,
607FACE91AFB9204008FA782 /* Supporting Files */,
);
path = Tests;
sourceTree = "<group>";
};
607FACE91AFB9204008FA782 /* Supporting Files */ = {
isa = PBXGroup;
children = (
607FACEA1AFB9204008FA782 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
607FACF51AFB993E008FA782 /* Podspec Metadata */ = {
isa = PBXGroup;
children = (
6F53932EDF83B3CD75A7F6AA /* CircleSlider.podspec */,
5204AEF712DEA2ED1A682562 /* README.md */,
DBE22831791D4DDA6F49A8BE /* LICENSE */,
);
name = "Podspec Metadata";
sourceTree = "<group>";
};
76F2CBD6B086068199AF2429 /* Frameworks */ = {
isa = PBXGroup;
children = (
94CA1A2D1D0C805EFE523E5C /* Pods_CircleSlider_Example.framework */,
A56BFB830D9D0DFB8307FBFC /* Pods_CircleSlider_Tests.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
A5ACA027A8B258C18262C54F /* Pods */ = {
isa = PBXGroup;
children = (
9312A4C29FD716957B7E8A17 /* Pods-CircleSlider_Example.debug.xcconfig */,
FB250602577B0817FF2027F7 /* Pods-CircleSlider_Example.release.xcconfig */,
56D23B4A232CDBC81D5AA21D /* Pods-CircleSlider_Tests.debug.xcconfig */,
77D2050CAC5F5D44AD79F6C4 /* Pods-CircleSlider_Tests.release.xcconfig */,
);
name = Pods;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
607FACCF1AFB9204008FA782 /* CircleSlider_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CircleSlider_Example" */;
buildPhases = (
638BA53FC6B50FB4B904DF66 /* [CP] Check Pods Manifest.lock */,
607FACCC1AFB9204008FA782 /* Sources */,
607FACCD1AFB9204008FA782 /* Frameworks */,
607FACCE1AFB9204008FA782 /* Resources */,
21B385BE366406DC55B0E9CF /* [CP] Embed Pods Frameworks */,
DA79C943C2AF2C50B8EBEF85 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
dependencies = (
);
name = CircleSlider_Example;
productName = CircleSlider;
productReference = 607FACD01AFB9204008FA782 /* CircleSlider_Example.app */;
productType = "com.apple.product-type.application";
};
607FACE41AFB9204008FA782 /* CircleSlider_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CircleSlider_Tests" */;
buildPhases = (
8800402E87C2F452FE6F839A /* [CP] Check Pods Manifest.lock */,
607FACE11AFB9204008FA782 /* Sources */,
607FACE21AFB9204008FA782 /* Frameworks */,
607FACE31AFB9204008FA782 /* Resources */,
1CFD5811F4D6B93DC9547ADD /* [CP] Embed Pods Frameworks */,
35537F0E9A0854D9C081C131 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
dependencies = (
607FACE71AFB9204008FA782 /* PBXTargetDependency */,
);
name = CircleSlider_Tests;
productName = Tests;
productReference = 607FACE51AFB9204008FA782 /* CircleSlider_Tests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
607FACC81AFB9204008FA782 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0710;
LastUpgradeCheck = 0900;
ORGANIZATIONNAME = CocoaPods;
TargetAttributes = {
607FACCF1AFB9204008FA782 = {
CreatedOnToolsVersion = 6.3.1;
DevelopmentTeam = MS47564222;
LastSwiftMigration = 0800;
ProvisioningStyle = Automatic;
};
607FACE41AFB9204008FA782 = {
CreatedOnToolsVersion = 6.3.1;
DevelopmentTeam = MS47564222;
LastSwiftMigration = 0800;
TestTargetID = 607FACCF1AFB9204008FA782;
};
};
};
buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "CircleSlider" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 607FACC71AFB9204008FA782;
productRefGroup = 607FACD11AFB9204008FA782 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
607FACCF1AFB9204008FA782 /* CircleSlider_Example */,
607FACE41AFB9204008FA782 /* CircleSlider_Tests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
607FACCE1AFB9204008FA782 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */,
607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */,
607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
607FACE31AFB9204008FA782 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
1CFD5811F4D6B93DC9547ADD /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${SRCROOT}/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/CircleSlider/CircleSlider.framework",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CircleSlider.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
21B385BE366406DC55B0E9CF /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${SRCROOT}/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/CircleSlider/CircleSlider.framework",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CircleSlider.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
35537F0E9A0854D9C081C131 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "[CP] Copy Pods Resources";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-resources.sh\"\n";
showEnvVarsInLog = 0;
};
638BA53FC6B50FB4B904DF66 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-CircleSlider_Example-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
8800402E87C2F452FE6F839A /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-CircleSlider_Tests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
DA79C943C2AF2C50B8EBEF85 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "[CP] Copy Pods Resources";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-resources.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
607FACCC1AFB9204008FA782 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
607FACD81AFB9204008FA782 /* ViewController.swift in Sources */,
607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
607FACE11AFB9204008FA782 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
607FACEC1AFB9204008FA782 /* Tests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
607FACE71AFB9204008FA782 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 607FACCF1AFB9204008FA782 /* CircleSlider_Example */;
targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
607FACD91AFB9204008FA782 /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
607FACDA1AFB9204008FA782 /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = {
isa = PBXVariantGroup;
children = (
607FACDF1AFB9204008FA782 /* Base */,
);
name = LaunchScreen.xib;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
607FACED1AFB9204008FA782 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 4.0;
};
name = Debug;
};
607FACEE1AFB9204008FA782 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 4.0;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
607FACF01AFB9204008FA782 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9312A4C29FD716957B7E8A17 /* Pods-CircleSlider_Example.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEVELOPMENT_TEAM = MS47564222;
INFOPLIST_FILE = CircleSlider/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 4.0;
};
name = Debug;
};
607FACF11AFB9204008FA782 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = FB250602577B0817FF2027F7 /* Pods-CircleSlider_Example.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEVELOPMENT_TEAM = MS47564222;
INFOPLIST_FILE = CircleSlider/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
SWIFT_VERSION = 4.0;
};
name = Release;
};
607FACF31AFB9204008FA782 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 56D23B4A232CDBC81D5AA21D /* Pods-CircleSlider_Tests.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
BUNDLE_LOADER = "$(TEST_HOST)";
DEVELOPMENT_TEAM = MS47564222;
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
INFOPLIST_FILE = Tests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 4.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CircleSlider_Example.app/CircleSlider_Example";
};
name = Debug;
};
607FACF41AFB9204008FA782 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 77D2050CAC5F5D44AD79F6C4 /* Pods-CircleSlider_Tests.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
BUNDLE_LOADER = "$(TEST_HOST)";
DEVELOPMENT_TEAM = MS47564222;
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
INFOPLIST_FILE = Tests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 4.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CircleSlider_Example.app/CircleSlider_Example";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "CircleSlider" */ = {
isa = XCConfigurationList;
buildConfigurations = (
607FACED1AFB9204008FA782 /* Debug */,
607FACEE1AFB9204008FA782 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CircleSlider_Example" */ = {
isa = XCConfigurationList;
buildConfigurations = (
607FACF01AFB9204008FA782 /* Debug */,
607FACF11AFB9204008FA782 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CircleSlider_Tests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
607FACF31AFB9204008FA782 /* Debug */,
607FACF41AFB9204008FA782 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 607FACC81AFB9204008FA782 /* Project object */;
}
================================================
FILE: Example/CircleSlider.xcodeproj/project.xcworkspace/contents.xcworkspacedata
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "self:CircleSlider.xcodeproj">
</FileRef>
</Workspace>
================================================
FILE: Example/CircleSlider.xcodeproj/xcshareddata/xcschemes/CircleSlider-Example.xcscheme
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0900"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "607FACCF1AFB9204008FA782"
BuildableName = "CircleSlider_Example.app"
BlueprintName = "CircleSlider_Example"
ReferencedContainer = "container:CircleSlider.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "NO"
buildForArchiving = "NO"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "607FACE41AFB9204008FA782"
BuildableName = "CircleSlider_Tests.xctest"
BlueprintName = "CircleSlider_Tests"
ReferencedContainer = "container:CircleSlider.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "607FACE41AFB9204008FA782"
BuildableName = "CircleSlider_Tests.xctest"
BlueprintName = "CircleSlider_Tests"
ReferencedContainer = "container:CircleSlider.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "607FACCF1AFB9204008FA782"
BuildableName = "CircleSlider_Example.app"
BlueprintName = "CircleSlider_Example"
ReferencedContainer = "container:CircleSlider.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "607FACCF1AFB9204008FA782"
BuildableName = "CircleSlider_Example.app"
BlueprintName = "CircleSlider_Example"
ReferencedContainer = "container:CircleSlider.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "607FACCF1AFB9204008FA782"
BuildableName = "CircleSlider_Example.app"
BlueprintName = "CircleSlider_Example"
ReferencedContainer = "container:CircleSlider.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
================================================
FILE: Example/CircleSlider.xcworkspace/contents.xcworkspacedata
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:CircleSlider.xcodeproj">
</FileRef>
<FileRef
location = "group:Pods/Pods.xcodeproj">
</FileRef>
</Workspace>
================================================
FILE: Example/Podfile
================================================
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
target 'CircleSlider_Example' do
pod "CircleSlider", :path => "../"
end
target 'CircleSlider_Tests' do
pod "CircleSlider", :path => "../"
end
================================================
FILE: Example/Pods/Local Podspecs/CircleSlider.podspec.json
================================================
{
"name": "CircleSlider",
"version": "0.5.0",
"summary": "CircleSlider is a Circular slider library. written in pure swift.",
"homepage": "https://github.com/shushutochako/CircleSlider",
"license": "MIT",
"authors": {
"shushutochako": "shushutochako22@gmail.com"
},
"source": {
"git": "https://github.com/shushutochako/CircleSlider.git",
"tag": "0.5.0"
},
"social_media_url": "https://twitter.com/shushutochako",
"platforms": {
"ios": "8.0"
},
"requires_arc": true,
"source_files": "Pod/Classes/**/*"
}
================================================
FILE: Example/Pods/Pods.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
0B0507CF1C631475B9C2BB54DAE5A2DF /* CircleSlider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2244967777521C1F8D9FB30A08481626 /* CircleSlider.swift */; };
0D34C9925F86C07C4F21F2B6B41A2BFF /* CircleSlider-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B73ED233D61636F4226D70991BF32CCB /* CircleSlider-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1208CB78980A9F17835163A9D05F4235 /* Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCF765AA20E3150E2E6B6DAA42DAB8C2 /* Math.swift */; };
57D4CFBB7C41EE0E9F5C91E03A08483A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; };
6746EDB4EA36946FC42197FE53263285 /* Pods-CircleSlider_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 045DE881A21972EB143E51BC6CC8EC36 /* Pods-CircleSlider_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
74882E6121B3296E2958AC91D0FF73CF /* TrackLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B3F534491496F9BCF670987FD32E03C /* TrackLayer.swift */; };
7A1CC123F65F0A2634E2A15B066CA97B /* Pods-CircleSlider_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BC53A9C3D8AB58F6A1EDC0E30E9E6F7 /* Pods-CircleSlider_Example-dummy.m */; };
83E40B2D9D34FCAFBB717CDB6E39792C /* Pods-CircleSlider_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 85A843C5EF627E5C92D5DB26A44BB63D /* Pods-CircleSlider_Tests-dummy.m */; };
9346FA4202521C90BAAA91B932AAFF34 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; };
A44C99F76205B5608590149DF4DC5026 /* Pods-CircleSlider_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 205F22356842419FEC9CE6E92DACA29F /* Pods-CircleSlider_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
C7E99D50DB6E6CB4A48BF1276A633DBC /* CircleSlider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BFADA3A495D1BA84C8BB26F892DA95F /* CircleSlider-dummy.m */; };
FD75197C62AE481D958456225E86690F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
FEAF775AEEA550C481220723D8A699B5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1D6EA7FFE0AA4C1522DE136BAC3E2134;
remoteInfo = CircleSlider;
};
FF846356B2E5145DF5BDF5E76EBC7ACD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1D6EA7FFE0AA4C1522DE136BAC3E2134;
remoteInfo = CircleSlider;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
045DE881A21972EB143E51BC6CC8EC36 /* Pods-CircleSlider_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CircleSlider_Example-umbrella.h"; sourceTree = "<group>"; };
059B72664BC4DEDCBF94E24DE9460CA3 /* Pods-CircleSlider_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CircleSlider_Tests-resources.sh"; sourceTree = "<group>"; };
0BC53A9C3D8AB58F6A1EDC0E30E9E6F7 /* Pods-CircleSlider_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CircleSlider_Example-dummy.m"; sourceTree = "<group>"; };
12752937C2F1AA956062010A3B7D1446 /* CircleSlider.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CircleSlider.framework; sourceTree = BUILT_PRODUCTS_DIR; };
14C8577DF040F97E1A24218A02D5648E /* Pods-CircleSlider_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CircleSlider_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
1A63D140A861714DD20CDC8C59EA0571 /* Pods-CircleSlider_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CircleSlider_Tests-frameworks.sh"; sourceTree = "<group>"; };
1D6643155E7919B400D7A2A23E76AEB0 /* Pods-CircleSlider_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CircleSlider_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
1F5A891C464321940903322659773D75 /* Pods-CircleSlider_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CircleSlider_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
205F22356842419FEC9CE6E92DACA29F /* Pods-CircleSlider_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CircleSlider_Tests-umbrella.h"; sourceTree = "<group>"; };
2244967777521C1F8D9FB30A08481626 /* CircleSlider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CircleSlider.swift; path = Pod/Classes/CircleSlider.swift; sourceTree = "<group>"; };
2DE5FC5FD8D3905AE5ADD33C4485B168 /* CircleSlider.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = CircleSlider.modulemap; sourceTree = "<group>"; };
3D18715507E170976793DA151D55005A /* Pods-CircleSlider_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleSlider_Tests.debug.xcconfig"; sourceTree = "<group>"; };
4B7F3B30C083CC94385994FB91DB6A4A /* Pods_CircleSlider_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CircleSlider_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4BFADA3A495D1BA84C8BB26F892DA95F /* CircleSlider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CircleSlider-dummy.m"; sourceTree = "<group>"; };
57AE48610F8BD546CA5D54DA6AC98C89 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5B3F534491496F9BCF670987FD32E03C /* TrackLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrackLayer.swift; path = Pod/Classes/TrackLayer.swift; sourceTree = "<group>"; };
6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
6AA0A94BC36BC71421C94FB1B981A893 /* Pods_CircleSlider_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CircleSlider_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6C7B6BA6575725D886DFA45C2F0E60F2 /* CircleSlider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CircleSlider-prefix.pch"; sourceTree = "<group>"; };
71769D75A52C5A360EBA66B114E3AEDE /* CircleSlider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CircleSlider.xcconfig; sourceTree = "<group>"; };
814D9F67F395D5DD7F733E9E83B52153 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
85A843C5EF627E5C92D5DB26A44BB63D /* Pods-CircleSlider_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CircleSlider_Tests-dummy.m"; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
940E0F561F0D6A09FFC732EF160A9E54 /* Pods-CircleSlider_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleSlider_Example.debug.xcconfig"; sourceTree = "<group>"; };
B73ED233D61636F4226D70991BF32CCB /* CircleSlider-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CircleSlider-umbrella.h"; sourceTree = "<group>"; };
BBFD0C08437DF58B969694243BC5DBFE /* Pods-CircleSlider_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-CircleSlider_Example.modulemap"; sourceTree = "<group>"; };
CB55D63B216D78E16ABD57926540C49B /* Pods-CircleSlider_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CircleSlider_Example-resources.sh"; sourceTree = "<group>"; };
CCF765AA20E3150E2E6B6DAA42DAB8C2 /* Math.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Math.swift; path = Pod/Classes/Math.swift; sourceTree = "<group>"; };
CD7E14C8DF5157367C83207FD1F6A7DC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
E95D8226DE71692B055FDE68B33291CF /* Pods-CircleSlider_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-CircleSlider_Tests.modulemap"; sourceTree = "<group>"; };
EA254F8FC3425F9B75078124FA910ABA /* Pods-CircleSlider_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleSlider_Example.release.xcconfig"; sourceTree = "<group>"; };
EDE12D0874B87D8DCB716A938F61074F /* Pods-CircleSlider_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleSlider_Tests.release.xcconfig"; sourceTree = "<group>"; };
EE6A154D72649ACE264B5073D024374B /* Pods-CircleSlider_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CircleSlider_Example-acknowledgements.plist"; sourceTree = "<group>"; };
FE6734A57D3E4BCD4DD3ED9D0F68AA5A /* Pods-CircleSlider_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CircleSlider_Example-frameworks.sh"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
50E58B4A6426841F6350D9788EAD4CE4 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
57D4CFBB7C41EE0E9F5C91E03A08483A /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
608FC1757D7726A8FBE0EBA4D4CFD400 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FD75197C62AE481D958456225E86690F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C150C1D52710047E088CEA675C01F6A5 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9346FA4202521C90BAAA91B932AAFF34 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0052024811B17705D1BEC3C2D696C449 /* Pods-CircleSlider_Tests */ = {
isa = PBXGroup;
children = (
57AE48610F8BD546CA5D54DA6AC98C89 /* Info.plist */,
E95D8226DE71692B055FDE68B33291CF /* Pods-CircleSlider_Tests.modulemap */,
1D6643155E7919B400D7A2A23E76AEB0 /* Pods-CircleSlider_Tests-acknowledgements.markdown */,
14C8577DF040F97E1A24218A02D5648E /* Pods-CircleSlider_Tests-acknowledgements.plist */,
85A843C5EF627E5C92D5DB26A44BB63D /* Pods-CircleSlider_Tests-dummy.m */,
1A63D140A861714DD20CDC8C59EA0571 /* Pods-CircleSlider_Tests-frameworks.sh */,
059B72664BC4DEDCBF94E24DE9460CA3 /* Pods-CircleSlider_Tests-resources.sh */,
205F22356842419FEC9CE6E92DACA29F /* Pods-CircleSlider_Tests-umbrella.h */,
3D18715507E170976793DA151D55005A /* Pods-CircleSlider_Tests.debug.xcconfig */,
EDE12D0874B87D8DCB716A938F61074F /* Pods-CircleSlider_Tests.release.xcconfig */,
);
name = "Pods-CircleSlider_Tests";
path = "Target Support Files/Pods-CircleSlider_Tests";
sourceTree = "<group>";
};
4BD20A54DC04CF0FF5B274CC0F969B87 /* Development Pods */ = {
isa = PBXGroup;
children = (
76D53057A25E095BD91A209E5AE6AEC3 /* CircleSlider */,
);
name = "Development Pods";
sourceTree = "<group>";
};
76D53057A25E095BD91A209E5AE6AEC3 /* CircleSlider */ = {
isa = PBXGroup;
children = (
2244967777521C1F8D9FB30A08481626 /* CircleSlider.swift */,
CCF765AA20E3150E2E6B6DAA42DAB8C2 /* Math.swift */,
5B3F534491496F9BCF670987FD32E03C /* TrackLayer.swift */,
E91E853C80CEB057E0E6101CDBC679C5 /* Support Files */,
);
name = CircleSlider;
path = ../..;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
4BD20A54DC04CF0FF5B274CC0F969B87 /* Development Pods */,
BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */,
96816B8D0894BEC023BCAD48C91898AE /* Products */,
86E124B55A510B2093513520D67476E8 /* Targets Support Files */,
);
sourceTree = "<group>";
};
86E124B55A510B2093513520D67476E8 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
D0E469A502EF12A9DC0608B1F7902C6F /* Pods-CircleSlider_Example */,
0052024811B17705D1BEC3C2D696C449 /* Pods-CircleSlider_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
96816B8D0894BEC023BCAD48C91898AE /* Products */ = {
isa = PBXGroup;
children = (
12752937C2F1AA956062010A3B7D1446 /* CircleSlider.framework */,
6AA0A94BC36BC71421C94FB1B981A893 /* Pods_CircleSlider_Example.framework */,
4B7F3B30C083CC94385994FB91DB6A4A /* Pods_CircleSlider_Tests.framework */,
);
name = Products;
sourceTree = "<group>";
};
BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = {
isa = PBXGroup;
children = (
D35AF013A5F0BAD4F32504907A52519E /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
D0E469A502EF12A9DC0608B1F7902C6F /* Pods-CircleSlider_Example */ = {
isa = PBXGroup;
children = (
CD7E14C8DF5157367C83207FD1F6A7DC /* Info.plist */,
BBFD0C08437DF58B969694243BC5DBFE /* Pods-CircleSlider_Example.modulemap */,
1F5A891C464321940903322659773D75 /* Pods-CircleSlider_Example-acknowledgements.markdown */,
EE6A154D72649ACE264B5073D024374B /* Pods-CircleSlider_Example-acknowledgements.plist */,
0BC53A9C3D8AB58F6A1EDC0E30E9E6F7 /* Pods-CircleSlider_Example-dummy.m */,
FE6734A57D3E4BCD4DD3ED9D0F68AA5A /* Pods-CircleSlider_Example-frameworks.sh */,
CB55D63B216D78E16ABD57926540C49B /* Pods-CircleSlider_Example-resources.sh */,
045DE881A21972EB143E51BC6CC8EC36 /* Pods-CircleSlider_Example-umbrella.h */,
940E0F561F0D6A09FFC732EF160A9E54 /* Pods-CircleSlider_Example.debug.xcconfig */,
EA254F8FC3425F9B75078124FA910ABA /* Pods-CircleSlider_Example.release.xcconfig */,
);
name = "Pods-CircleSlider_Example";
path = "Target Support Files/Pods-CircleSlider_Example";
sourceTree = "<group>";
};
D35AF013A5F0BAD4F32504907A52519E /* iOS */ = {
isa = PBXGroup;
children = (
6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */,
);
name = iOS;
sourceTree = "<group>";
};
E91E853C80CEB057E0E6101CDBC679C5 /* Support Files */ = {
isa = PBXGroup;
children = (
2DE5FC5FD8D3905AE5ADD33C4485B168 /* CircleSlider.modulemap */,
71769D75A52C5A360EBA66B114E3AEDE /* CircleSlider.xcconfig */,
4BFADA3A495D1BA84C8BB26F892DA95F /* CircleSlider-dummy.m */,
6C7B6BA6575725D886DFA45C2F0E60F2 /* CircleSlider-prefix.pch */,
B73ED233D61636F4226D70991BF32CCB /* CircleSlider-umbrella.h */,
814D9F67F395D5DD7F733E9E83B52153 /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/CircleSlider";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
27F876E76CBC8DA016320E704F37F3E5 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
A44C99F76205B5608590149DF4DC5026 /* Pods-CircleSlider_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C836D216CE18B579ECE90ECC1EBBD79A /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
0D34C9925F86C07C4F21F2B6B41A2BFF /* CircleSlider-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D45F3B226BE7AC49EF6ABDC7FC9C1705 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
6746EDB4EA36946FC42197FE53263285 /* Pods-CircleSlider_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
1D6EA7FFE0AA4C1522DE136BAC3E2134 /* CircleSlider */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4681955EC24A011E9997ACF49D99E409 /* Build configuration list for PBXNativeTarget "CircleSlider" */;
buildPhases = (
06EF85485E9150FEF472F3CE759B3F47 /* Sources */,
608FC1757D7726A8FBE0EBA4D4CFD400 /* Frameworks */,
C836D216CE18B579ECE90ECC1EBBD79A /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = CircleSlider;
productName = CircleSlider;
productReference = 12752937C2F1AA956062010A3B7D1446 /* CircleSlider.framework */;
productType = "com.apple.product-type.framework";
};
B5F6AF5D4067C56E4AFF15122FF6741D /* Pods-CircleSlider_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 6E22833E4D8E66BBD613E02A54250C59 /* Build configuration list for PBXNativeTarget "Pods-CircleSlider_Tests" */;
buildPhases = (
25BA48E52D351D82C29D3BE48982227D /* Sources */,
C150C1D52710047E088CEA675C01F6A5 /* Frameworks */,
27F876E76CBC8DA016320E704F37F3E5 /* Headers */,
);
buildRules = (
);
dependencies = (
BA7A27BFE28E26C1013A7FF9C1D2DE0E /* PBXTargetDependency */,
);
name = "Pods-CircleSlider_Tests";
productName = "Pods-CircleSlider_Tests";
productReference = 4B7F3B30C083CC94385994FB91DB6A4A /* Pods_CircleSlider_Tests.framework */;
productType = "com.apple.product-type.framework";
};
B70FE00B687E7C8EE739D3EC75153DF3 /* Pods-CircleSlider_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = C710CFA879A13B08EFA8C9578FA148C1 /* Build configuration list for PBXNativeTarget "Pods-CircleSlider_Example" */;
buildPhases = (
B5A9C68103E1537C2CB8E753D60AC3CA /* Sources */,
50E58B4A6426841F6350D9788EAD4CE4 /* Frameworks */,
D45F3B226BE7AC49EF6ABDC7FC9C1705 /* Headers */,
);
buildRules = (
);
dependencies = (
0F602E9AFD8972151FF3127A0C6D8FC4 /* PBXTargetDependency */,
);
name = "Pods-CircleSlider_Example";
productName = "Pods-CircleSlider_Example";
productReference = 6AA0A94BC36BC71421C94FB1B981A893 /* Pods_CircleSlider_Example.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0830;
LastUpgradeCheck = 0700;
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = 96816B8D0894BEC023BCAD48C91898AE /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
1D6EA7FFE0AA4C1522DE136BAC3E2134 /* CircleSlider */,
B70FE00B687E7C8EE739D3EC75153DF3 /* Pods-CircleSlider_Example */,
B5F6AF5D4067C56E4AFF15122FF6741D /* Pods-CircleSlider_Tests */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
06EF85485E9150FEF472F3CE759B3F47 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
C7E99D50DB6E6CB4A48BF1276A633DBC /* CircleSlider-dummy.m in Sources */,
0B0507CF1C631475B9C2BB54DAE5A2DF /* CircleSlider.swift in Sources */,
1208CB78980A9F17835163A9D05F4235 /* Math.swift in Sources */,
74882E6121B3296E2958AC91D0FF73CF /* TrackLayer.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
25BA48E52D351D82C29D3BE48982227D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
83E40B2D9D34FCAFBB717CDB6E39792C /* Pods-CircleSlider_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B5A9C68103E1537C2CB8E753D60AC3CA /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
7A1CC123F65F0A2634E2A15B066CA97B /* Pods-CircleSlider_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
0F602E9AFD8972151FF3127A0C6D8FC4 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = CircleSlider;
target = 1D6EA7FFE0AA4C1522DE136BAC3E2134 /* CircleSlider */;
targetProxy = FF846356B2E5145DF5BDF5E76EBC7ACD /* PBXContainerItemProxy */;
};
BA7A27BFE28E26C1013A7FF9C1D2DE0E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = CircleSlider;
target = 1D6EA7FFE0AA4C1522DE136BAC3E2134 /* CircleSlider */;
targetProxy = FEAF775AEEA550C481220723D8A699B5 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
0F82AB8867614F0E1B4BF5D1CE17948D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 71769D75A52C5A360EBA66B114E3AEDE /* CircleSlider.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
GCC_PREFIX_HEADER = "Target Support Files/CircleSlider/CircleSlider-prefix.pch";
INFOPLIST_FILE = "Target Support Files/CircleSlider/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/CircleSlider/CircleSlider.modulemap";
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_NAME = CircleSlider;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 4.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
1B169FD6A391B0FD2917E4C6AB105708 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 3D18715507E170976793DA151D55005A /* Pods-CircleSlider_Tests.debug.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/Pods-CircleSlider_Tests/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests.modulemap";
MTL_ENABLE_DEBUG_INFO = YES;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_CircleSlider_Tests;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
1C7D17A37D091C98D2F0DD886C3A9320 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGNING_REQUIRED = NO;
COPY_PHASE_STRIP = NO;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_DEBUG=1",
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
ONLY_ACTIVE_ARCH = YES;
PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/;
STRIP_INSTALLED_PRODUCT = NO;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SYMROOT = "${SRCROOT}/../build";
};
name = Debug;
};
34FE9531DA9AF2820790339988D5FF41 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGNING_REQUIRED = NO;
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_RELEASE=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/;
STRIP_INSTALLED_PRODUCT = NO;
SYMROOT = "${SRCROOT}/../build";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
49770F3210575CD55836195276F23249 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = EDE12D0874B87D8DCB716A938F61074F /* Pods-CircleSlider_Tests.release.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/Pods-CircleSlider_Tests/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests.modulemap";
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_CircleSlider_Tests;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
66109B45AA14E6F2D4EED05D703F9A06 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = EA254F8FC3425F9B75078124FA910ABA /* Pods-CircleSlider_Example.release.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/Pods-CircleSlider_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example.modulemap";
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_CircleSlider_Example;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
F18C2A971152E54A4A8184880C7AFD8F /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 71769D75A52C5A360EBA66B114E3AEDE /* CircleSlider.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
GCC_PREFIX_HEADER = "Target Support Files/CircleSlider/CircleSlider-prefix.pch";
INFOPLIST_FILE = "Target Support Files/CircleSlider/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/CircleSlider/CircleSlider.modulemap";
MTL_ENABLE_DEBUG_INFO = YES;
PRODUCT_NAME = CircleSlider;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 4.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
F3F9842DB1F92821D6D83319015BFBEC /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 940E0F561F0D6A09FFC732EF160A9E54 /* Pods-CircleSlider_Example.debug.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/Pods-CircleSlider_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example.modulemap";
MTL_ENABLE_DEBUG_INFO = YES;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_CircleSlider_Example;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1C7D17A37D091C98D2F0DD886C3A9320 /* Debug */,
34FE9531DA9AF2820790339988D5FF41 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
4681955EC24A011E9997ACF49D99E409 /* Build configuration list for PBXNativeTarget "CircleSlider" */ = {
isa = XCConfigurationList;
buildConfigurations = (
F18C2A971152E54A4A8184880C7AFD8F /* Debug */,
0F82AB8867614F0E1B4BF5D1CE17948D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
6E22833E4D8E66BBD613E02A54250C59 /* Build configuration list for PBXNativeTarget "Pods-CircleSlider_Tests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1B169FD6A391B0FD2917E4C6AB105708 /* Debug */,
49770F3210575CD55836195276F23249 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
C710CFA879A13B08EFA8C9578FA148C1 /* Build configuration list for PBXNativeTarget "Pods-CircleSlider_Example" */ = {
isa = XCConfigurationList;
buildConfigurations = (
F3F9842DB1F92821D6D83319015BFBEC /* Debug */,
66109B45AA14E6F2D4EED05D703F9A06 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
}
================================================
FILE: Example/Pods/Target Support Files/CircleSlider/CircleSlider-dummy.m
================================================
#import <Foundation/Foundation.h>
@interface PodsDummy_CircleSlider : NSObject
@end
@implementation PodsDummy_CircleSlider
@end
================================================
FILE: Example/Pods/Target Support Files/CircleSlider/CircleSlider-prefix.pch
================================================
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
================================================
FILE: Example/Pods/Target Support Files/CircleSlider/CircleSlider-umbrella.h
================================================
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT double CircleSliderVersionNumber;
FOUNDATION_EXPORT const unsigned char CircleSliderVersionString[];
================================================
FILE: Example/Pods/Target Support Files/CircleSlider/CircleSlider.modulemap
================================================
framework module CircleSlider {
umbrella header "CircleSlider-umbrella.h"
export *
module * { export * }
}
================================================
FILE: Example/Pods/Target Support Files/CircleSlider/CircleSlider.xcconfig
================================================
CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/CircleSlider
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public"
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PODS_TARGET_SRCROOT = ${PODS_ROOT}/../..
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
SKIP_INSTALL = YES
================================================
FILE: Example/Pods/Target Support Files/CircleSlider/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.6.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>${CURRENT_PROJECT_VERSION}</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>${CURRENT_PROJECT_VERSION}</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-acknowledgements.markdown
================================================
# Acknowledgements
This application makes use of the following third party libraries:
## CircleSlider
Copyright (c) 2015 shushutochako <shushutochako22@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Generated by CocoaPods - https://cocoapods.org
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-acknowledgements.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreferenceSpecifiers</key>
<array>
<dict>
<key>FooterText</key>
<string>This application makes use of the following third party libraries:</string>
<key>Title</key>
<string>Acknowledgements</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
<dict>
<key>FooterText</key>
<string>Copyright (c) 2015 shushutochako <shushutochako22@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</string>
<key>License</key>
<string>MIT</string>
<key>Title</key>
<string>CircleSlider</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
<dict>
<key>FooterText</key>
<string>Generated by CocoaPods - https://cocoapods.org</string>
<key>Title</key>
<string></string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
</array>
<key>StringsTable</key>
<string>Acknowledgements</string>
<key>Title</key>
<string>Acknowledgements</string>
</dict>
</plist>
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-dummy.m
================================================
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_CircleSlider_Example : NSObject
@end
@implementation PodsDummy_Pods_CircleSlider_Example
@end
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-frameworks.sh
================================================
#!/bin/sh
set -e
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"
# This protects against multiple targets copying the same framework dependency at the same time. The solution
# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html
RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????")
install_framework()
{
if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
local source="${BUILT_PRODUCTS_DIR}/$1"
elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
elif [ -r "$1" ]; then
local source="$1"
fi
local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
# Use filter instead of exclude so missing patterns don't throw errors.
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"
local basename
basename="$(basename -s .framework "$1")"
binary="${destination}/${basename}.framework/${basename}"
if ! [ -r "$binary" ]; then
binary="${destination}/${basename}"
fi
# Strip invalid architectures so "fat" simulator / device frameworks work on device
if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
strip_invalid_archs "$binary"
fi
# Resign the code if required by the build settings to avoid unstable apps
code_sign_if_enabled "${destination}/$(basename "$1")"
# Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
local swift_runtime_libs
swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]})
for lib in $swift_runtime_libs; do
echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
code_sign_if_enabled "${destination}/${lib}"
done
fi
}
# Copies the dSYM of a vendored framework
install_dsym() {
local source="$1"
if [ -r "$source" ]; then
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\""
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}"
fi
}
# Signs a framework with the provided identity
code_sign_if_enabled() {
if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
# Use the current code_sign_identitiy
echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'"
if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
code_sign_cmd="$code_sign_cmd &"
fi
echo "$code_sign_cmd"
eval "$code_sign_cmd"
fi
}
# Strip invalid architectures
strip_invalid_archs() {
binary="$1"
# Get architectures for current file
archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)"
stripped=""
for arch in $archs; do
if ! [[ "${ARCHS}" == *"$arch"* ]]; then
# Strip non-valid architectures in-place
lipo -remove "$arch" -output "$binary" "$binary" || exit 1
stripped="$stripped $arch"
fi
done
if [[ "$stripped" ]]; then
echo "Stripped $binary of architectures:$stripped"
fi
}
if [[ "$CONFIGURATION" == "Debug" ]]; then
install_framework "${BUILT_PRODUCTS_DIR}/CircleSlider/CircleSlider.framework"
fi
if [[ "$CONFIGURATION" == "Release" ]]; then
install_framework "${BUILT_PRODUCTS_DIR}/CircleSlider/CircleSlider.framework"
fi
if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
wait
fi
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-resources.sh
================================================
#!/bin/sh
set -e
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
> "$RESOURCES_TO_COPY"
XCASSET_FILES=()
# This protects against multiple targets copying the same framework dependency at the same time. The solution
# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html
RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????")
case "${TARGETED_DEVICE_FAMILY}" in
1,2)
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
;;
1)
TARGET_DEVICE_ARGS="--target-device iphone"
;;
2)
TARGET_DEVICE_ARGS="--target-device ipad"
;;
3)
TARGET_DEVICE_ARGS="--target-device tv"
;;
4)
TARGET_DEVICE_ARGS="--target-device watch"
;;
*)
TARGET_DEVICE_ARGS="--target-device mac"
;;
esac
install_resource()
{
if [[ "$1" = /* ]] ; then
RESOURCE_PATH="$1"
else
RESOURCE_PATH="${PODS_ROOT}/$1"
fi
if [[ ! -e "$RESOURCE_PATH" ]] ; then
cat << EOM
error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script.
EOM
exit 1
fi
case $RESOURCE_PATH in
*.storyboard)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true
ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
;;
*.xib)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true
ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
;;
*.framework)
echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true
mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
;;
*.xcdatamodel)
echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true
xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom"
;;
*.xcdatamodeld)
echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true
xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd"
;;
*.xcmappingmodel)
echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true
xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm"
;;
*.xcassets)
ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH"
XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE")
;;
*)
echo "$RESOURCE_PATH" || true
echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY"
;;
esac
}
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then
mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
rm -f "$RESOURCES_TO_COPY"
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ]
then
# Find all other xcassets (this unfortunately includes those of path pods and other targets).
OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d)
while read line; do
if [[ $line != "${PODS_ROOT}*" ]]; then
XCASSET_FILES+=("$line")
fi
done <<<"$OTHER_XCASSETS"
printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-umbrella.h
================================================
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT double Pods_CircleSlider_ExampleVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_CircleSlider_ExampleVersionString[];
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example.debug.xcconfig
================================================
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/CircleSlider"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/CircleSlider/CircleSlider.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "CircleSlider"
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
PODS_ROOT = ${SRCROOT}/Pods
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example.modulemap
================================================
framework module Pods_CircleSlider_Example {
umbrella header "Pods-CircleSlider_Example-umbrella.h"
export *
module * { export * }
}
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example.release.xcconfig
================================================
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/CircleSlider"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/CircleSlider/CircleSlider.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "CircleSlider"
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
PODS_ROOT = ${SRCROOT}/Pods
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>${CURRENT_PROJECT_VERSION}</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-acknowledgements.markdown
================================================
# Acknowledgements
This application makes use of the following third party libraries:
## CircleSlider
Copyright (c) 2015 shushutochako <shushutochako22@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Generated by CocoaPods - https://cocoapods.org
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-acknowledgements.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreferenceSpecifiers</key>
<array>
<dict>
<key>FooterText</key>
<string>This application makes use of the following third party libraries:</string>
<key>Title</key>
<string>Acknowledgements</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
<dict>
<key>FooterText</key>
<string>Copyright (c) 2015 shushutochako <shushutochako22@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</string>
<key>License</key>
<string>MIT</string>
<key>Title</key>
<string>CircleSlider</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
<dict>
<key>FooterText</key>
<string>Generated by CocoaPods - https://cocoapods.org</string>
<key>Title</key>
<string></string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
</array>
<key>StringsTable</key>
<string>Acknowledgements</string>
<key>Title</key>
<string>Acknowledgements</string>
</dict>
</plist>
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-dummy.m
================================================
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_CircleSlider_Tests : NSObject
@end
@implementation PodsDummy_Pods_CircleSlider_Tests
@end
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-frameworks.sh
================================================
#!/bin/sh
set -e
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"
# This protects against multiple targets copying the same framework dependency at the same time. The solution
# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html
RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????")
install_framework()
{
if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
local source="${BUILT_PRODUCTS_DIR}/$1"
elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
elif [ -r "$1" ]; then
local source="$1"
fi
local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
# Use filter instead of exclude so missing patterns don't throw errors.
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"
local basename
basename="$(basename -s .framework "$1")"
binary="${destination}/${basename}.framework/${basename}"
if ! [ -r "$binary" ]; then
binary="${destination}/${basename}"
fi
# Strip invalid architectures so "fat" simulator / device frameworks work on device
if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
strip_invalid_archs "$binary"
fi
# Resign the code if required by the build settings to avoid unstable apps
code_sign_if_enabled "${destination}/$(basename "$1")"
# Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
local swift_runtime_libs
swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]})
for lib in $swift_runtime_libs; do
echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
code_sign_if_enabled "${destination}/${lib}"
done
fi
}
# Copies the dSYM of a vendored framework
install_dsym() {
local source="$1"
if [ -r "$source" ]; then
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\""
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}"
fi
}
# Signs a framework with the provided identity
code_sign_if_enabled() {
if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
# Use the current code_sign_identitiy
echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'"
if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
code_sign_cmd="$code_sign_cmd &"
fi
echo "$code_sign_cmd"
eval "$code_sign_cmd"
fi
}
# Strip invalid architectures
strip_invalid_archs() {
binary="$1"
# Get architectures for current file
archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)"
stripped=""
for arch in $archs; do
if ! [[ "${ARCHS}" == *"$arch"* ]]; then
# Strip non-valid architectures in-place
lipo -remove "$arch" -output "$binary" "$binary" || exit 1
stripped="$stripped $arch"
fi
done
if [[ "$stripped" ]]; then
echo "Stripped $binary of architectures:$stripped"
fi
}
if [[ "$CONFIGURATION" == "Debug" ]]; then
install_framework "${BUILT_PRODUCTS_DIR}/CircleSlider/CircleSlider.framework"
fi
if [[ "$CONFIGURATION" == "Release" ]]; then
install_framework "${BUILT_PRODUCTS_DIR}/CircleSlider/CircleSlider.framework"
fi
if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
wait
fi
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-resources.sh
================================================
#!/bin/sh
set -e
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
> "$RESOURCES_TO_COPY"
XCASSET_FILES=()
# This protects against multiple targets copying the same framework dependency at the same time. The solution
# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html
RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????")
case "${TARGETED_DEVICE_FAMILY}" in
1,2)
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
;;
1)
TARGET_DEVICE_ARGS="--target-device iphone"
;;
2)
TARGET_DEVICE_ARGS="--target-device ipad"
;;
3)
TARGET_DEVICE_ARGS="--target-device tv"
;;
4)
TARGET_DEVICE_ARGS="--target-device watch"
;;
*)
TARGET_DEVICE_ARGS="--target-device mac"
;;
esac
install_resource()
{
if [[ "$1" = /* ]] ; then
RESOURCE_PATH="$1"
else
RESOURCE_PATH="${PODS_ROOT}/$1"
fi
if [[ ! -e "$RESOURCE_PATH" ]] ; then
cat << EOM
error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script.
EOM
exit 1
fi
case $RESOURCE_PATH in
*.storyboard)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true
ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
;;
*.xib)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true
ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
;;
*.framework)
echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true
mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true
rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
;;
*.xcdatamodel)
echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true
xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom"
;;
*.xcdatamodeld)
echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true
xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd"
;;
*.xcmappingmodel)
echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true
xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm"
;;
*.xcassets)
ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH"
XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE")
;;
*)
echo "$RESOURCE_PATH" || true
echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY"
;;
esac
}
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then
mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
rm -f "$RESOURCES_TO_COPY"
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ]
then
# Find all other xcassets (this unfortunately includes those of path pods and other targets).
OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d)
while read line; do
if [[ $line != "${PODS_ROOT}*" ]]; then
XCASSET_FILES+=("$line")
fi
done <<<"$OTHER_XCASSETS"
printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-umbrella.h
================================================
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT double Pods_CircleSlider_TestsVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_CircleSlider_TestsVersionString[];
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests.debug.xcconfig
================================================
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/CircleSlider"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/CircleSlider/CircleSlider.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "CircleSlider"
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
PODS_ROOT = ${SRCROOT}/Pods
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests.modulemap
================================================
framework module Pods_CircleSlider_Tests {
umbrella header "Pods-CircleSlider_Tests-umbrella.h"
export *
module * { export * }
}
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests.release.xcconfig
================================================
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/CircleSlider"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/CircleSlider/CircleSlider.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "CircleSlider"
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
PODS_ROOT = ${SRCROOT}/Pods
================================================
FILE: Example/Tests/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
================================================
FILE: Example/Tests/Tests.swift
================================================
import UIKit
import XCTest
import CircleSlider
class Tests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
}
override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
super.tearDown()
}
func testExample() {
// This is an example of a functional test case.
XCTAssert(true, "Pass")
}
func testPerformanceExample() {
// This is an example of a performance test case.
self.measure() {
// Put the code you want to measure the time of here.
}
}
}
================================================
FILE: LICENSE
================================================
Copyright (c) 2015 shushutochako <shushutochako22@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
================================================
FILE: Pod/Assets/.gitkeep
================================================
================================================
FILE: Pod/Classes/.gitkeep
================================================
================================================
FILE: Pod/Classes/CircleSlider.swift
================================================
//
// CircleSlider.swift
// CircleSlider
//
// Created by shushutochako on 11/17/15.
// Copyright © 2015 shushutochako. All rights reserved.
//
public enum CircleSliderOption {
case startAngle(Double)
case barColor(UIColor)
case trackingColor(UIColor)
case thumbColor(UIColor)
case thumbImage(UIImage?)
case barWidth(CGFloat)
case thumbWidth(CGFloat)
case maxValue(Float)
case minValue(Float)
case sliderEnabled(Bool)
case viewInset(CGFloat)
case minMaxSwitchTreshold(Float)
case thumbPosition(Float)
}
public enum CircleSliderStatus {
case noChangeMinValue
case inProgressChangeValue
case reachedMaxValue
}
open class CircleSlider: UIControl {
open var delegate: CircleSliderDelegate?
open var status: CircleSliderStatus {
switch _value {
case minValue:
return CircleSliderStatus.noChangeMinValue
case maxValue:
return CircleSliderStatus.reachedMaxValue
default:
return CircleSliderStatus.inProgressChangeValue
}
}
fileprivate let minThumbTouchAreaWidth: CGFloat = 44
fileprivate var latestDegree: Double = 0
fileprivate var _value: Float = 0
open var value: Float {
get {
return self._value
}
set {
var value = newValue
let significantChange = (self.maxValue - self.minValue) * (1.0 - self.minMaxSwitchTreshold)
let isSignificantChangeOccured = fabs(newValue - self._value) > significantChange
if isSignificantChangeOccured {
if self._value < newValue {
value = self.minValue
} else {
value = self.maxValue
}
} else {
value = newValue
}
if _value == minValue && newValue > minValue {
self.delegate?.didStartChangeValue()
}
self._value = value
self.sendActions(for: .valueChanged)
var degree = Math.degreeFromValue(self.startAngle, value: self.value, maxValue: self.maxValue, minValue: self.minValue)
// fix rendering issue near max value
// substract 1/100 of one degree from the current degree to fix a very little overflow
// which otherwise cause to display a layer as it is on a min value
if self._value == self.maxValue {
degree = degree - degree / (360 * 100)
self.delegate?.didReachedMaxValue()
}
self.layout(degree)
}
}
fileprivate var trackLayer: TrackLayer! {
didSet {
self.layer.addSublayer(self.trackLayer)
}
}
fileprivate var thumbView: UIView! {
didSet {
if self.sliderEnabled {
self.thumbView.backgroundColor = self.thumbColor
self.thumbView.center = self.thumbCenter(self.startAngle)
self.thumbView.layer.cornerRadius = self.thumbView!.bounds.size.width * 0.5
self.addSubview(self.thumbView)
if let thumbImage = self.thumbImage {
let thumbImageView = UIImageView(frame: self.thumbView.bounds)
thumbImageView.image = thumbImage
self.thumbView.addSubview(thumbImageView)
self.thumbView.backgroundColor = UIColor.clear
}
} else {
self.thumbView.isHidden = true
}
}
}
// Options
fileprivate var startAngle: Double = -90
fileprivate var barColor = UIColor.lightGray
fileprivate var trackingColor = UIColor.blue
fileprivate var thumbColor = UIColor.black
fileprivate var barWidth: CGFloat = 20
fileprivate var maxValue: Float = 101
fileprivate var minValue: Float = 0
fileprivate var sliderEnabled = true
fileprivate var viewInset: CGFloat = 20
fileprivate var minMaxSwitchTreshold: Float = 0.0 // from 0.0 to 1.0
fileprivate var thumbImage: UIImage?
fileprivate var _thumbWidth: CGFloat?
fileprivate var thumbWidth: CGFloat {
get {
if let retValue = self._thumbWidth {
return retValue
}
return self.barWidth * 1.5
}
set {
self._thumbWidth = newValue
}
}
fileprivate var thumbPosition: Float = 0.5
open override func awakeFromNib() {
super.awakeFromNib()
backgroundColor = UIColor.clear
}
public init(frame: CGRect, options: [CircleSliderOption]?) {
super.init(frame: frame)
if let options = options {
build(options)
}
}
convenience init(frame: CGRect, options: [CircleSliderOption]?, delegate: CircleSliderDelegate?) {
self.init(frame: frame, options: options)
self.delegate = delegate
}
public required init?(coder _: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
open override func layoutSublayers(of _: CALayer) {
if trackLayer == nil {
trackLayer = TrackLayer(bounds: bounds.insetBy(dx: viewInset, dy: viewInset), setting: createLayerSetting())
}
if thumbView == nil {
thumbView = UIView(frame: CGRect(x: 0, y: 0, width: thumbWidth, height: thumbWidth))
}
}
open override func hitTest(_ point: CGPoint, with _: UIEvent?) -> UIView? {
if !sliderEnabled {
return nil
}
let rect = trackLayer.hollowRect
let hollowPath = UIBezierPath(roundedRect: rect, cornerRadius: trackLayer.hollowRadius)
if !(bounds.contains(point) || hollowPath.contains(point)) ||
!(thumbView.frame.contains(point)) {
return nil
}
return self
}
open override func continueTracking(_ touch: UITouch, with _: UIEvent?) -> Bool {
let degree = Math.pointPairToBearingDegrees(center, endPoint: touch.location(in: self))
latestDegree = degree
layout(degree)
let value = Float(Math.adjustValue(startAngle, degree: degree, maxValue: self.maxValue, minValue: self.minValue))
self.value = value
return true
}
open func changeOptions(_ options: [CircleSliderOption]) {
build(options)
redraw()
}
fileprivate func redraw() {
if trackLayer != nil {
trackLayer.removeFromSuperlayer()
}
trackLayer = TrackLayer(bounds: bounds.insetBy(dx: viewInset, dy: viewInset), setting: createLayerSetting())
if thumbView != nil {
thumbView.removeFromSuperview()
}
thumbView = UIView(frame: CGRect(x: 0, y: 0, width: thumbWidth, height: thumbWidth))
layout(latestDegree)
}
fileprivate func build(_ options: [CircleSliderOption]) {
for option in options {
switch option {
case let .startAngle(value):
self.startAngle = value
latestDegree = self.startAngle
case let .barColor(value):
self.barColor = value
case let .trackingColor(value):
self.trackingColor = value
case let .thumbColor(value):
self.thumbColor = value
case let .barWidth(value):
self.barWidth = value
case let .thumbWidth(value):
self.thumbWidth = value
case let .maxValue(value):
self.maxValue = value
// Adjust because value not rise up to the maxValue
self.maxValue += 1
case let .minValue(value):
self.minValue = value
_value = self.minValue
case let .sliderEnabled(value):
self.sliderEnabled = value
case let .viewInset(value):
self.viewInset = value
case let .minMaxSwitchTreshold(value):
self.minMaxSwitchTreshold = value
case let .thumbImage(value):
self.thumbImage = value
case let .thumbPosition(value):
self.thumbPosition = value
}
}
}
fileprivate func layout(_ degree: Double) {
if let trackLayer = self.trackLayer, let thumbView = self.thumbView {
trackLayer.degree = degree
thumbView.center = thumbCenter(degree)
trackLayer.setNeedsDisplay()
}
}
fileprivate func createLayerSetting() -> TrackLayer.Setting {
var setting = TrackLayer.Setting()
setting.startAngle = startAngle
setting.barColor = barColor
setting.trackingColor = trackingColor
setting.barWidth = barWidth
return setting
}
fileprivate func thumbCenter(_ degree: Double) -> CGPoint {
let radius = (bounds.insetBy(dx: viewInset, dy: viewInset).width * 0.5) - (barWidth * CGFloat(thumbPosition))
return Math.pointFromAngle(frame, angle: degree, radius: Double(radius))
}
}
public protocol CircleSliderDelegate {
func didStartChangeValue()
func didReachedMaxValue()
}
================================================
FILE: Pod/Classes/Math.swift
================================================
//
// CircleSliderMath.swift
// Pods
//
// Created by shushutochako on 11/17/15.
// Copyright © 2015 shushutochako. All rights reserved.
//
import UIKit
internal class Math {
internal class func degreesToRadians(_ angle: Double) -> Double {
return angle / 180 * Double.pi
}
internal class func pointFromAngle(_ frame: CGRect, angle: Double, radius: Double) -> CGPoint {
let radian = degreesToRadians(angle)
let x = Double(frame.midX) + cos(radian) * radius
let y = Double(frame.midY) + sin(radian) * radius
return CGPoint(x: x, y: y)
}
internal class func pointPairToBearingDegrees(_ startPoint: CGPoint, endPoint: CGPoint) -> Double {
let originPoint = CGPoint(x: endPoint.x - startPoint.x, y: endPoint.y - startPoint.y)
let bearingRadians = atan2(Double(originPoint.y), Double(originPoint.x))
var bearingDegrees = bearingRadians * (180.0 / Double.pi)
bearingDegrees = (bearingDegrees > 0.0 ? bearingDegrees : (360.0 + bearingDegrees))
return bearingDegrees
}
internal class func adjustValue(_ startAngle: Double, degree: Double, maxValue: Float, minValue: Float) -> Double {
let ratio = Double((maxValue - minValue) / 360)
let ratioStart = ratio * startAngle
let ratioDegree = ratio * degree
let adjustValue: Double
if startAngle < 0 {
adjustValue = (360 + startAngle) > degree ? (ratioDegree - ratioStart) : (ratioDegree - ratioStart) - (360 * ratio)
} else {
adjustValue = (360 - (360 - startAngle)) < degree ? (ratioDegree - ratioStart) : (ratioDegree - ratioStart) + (360 * ratio)
}
return adjustValue + (Double(minValue))
}
internal class func adjustDegree(_ startAngle: Double, degree: Double) -> Double {
return (360 + startAngle) > degree ? degree : -(360 - degree)
}
internal class func degreeFromValue(_ startAngle: Double, value: Float, maxValue: Float, minValue: Float) -> Double {
let ratio = Double((maxValue - minValue) / 360)
let angle = Double(value) / ratio
return angle + startAngle - (Double(minValue) / ratio)
}
}
================================================
FILE: Pod/Classes/TrackLayer.swift
================================================
//
// TrackLayer.swift
// Pods
//
// Created by shushutochako on 11/17/15.
// Copyright © 2015 shushutochako. All rights reserved.
//
import UIKit
internal class TrackLayer: CAShapeLayer {
struct Setting {
var startAngle = Double()
var barWidth = CGFloat()
var barColor = UIColor()
var trackingColor = UIColor()
}
internal var setting = Setting()
internal var degree: Double = 0
internal var hollowRadius: CGFloat {
return (self.bounds.width * 0.5) - self.setting.barWidth
}
internal var currentCenter: CGPoint {
return CGPoint(x: self.bounds.midX, y: self.bounds.midY)
}
internal var hollowRect: CGRect {
return CGRect(
x: self.currentCenter.x - self.hollowRadius,
y: self.currentCenter.y - self.hollowRadius,
width: self.hollowRadius * 2.0,
height: self.hollowRadius * 2.0)
}
internal init(bounds: CGRect, setting: Setting) {
super.init()
self.bounds = bounds
self.setting = setting
cornerRadius = self.bounds.size.width * 0.5
masksToBounds = true
position = currentCenter
backgroundColor = self.setting.barColor.cgColor
mask()
}
required init?(coder _: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
internal override func draw(in ctx: CGContext) {
drawTrack(ctx: ctx)
}
private func mask() {
let maskLayer = CAShapeLayer()
maskLayer.bounds = bounds
let ovalRect = hollowRect
let path = UIBezierPath(ovalIn: ovalRect)
path.append(UIBezierPath(rect: maskLayer.bounds))
maskLayer.path = path.cgPath
maskLayer.position = currentCenter
maskLayer.fillRule = kCAFillRuleEvenOdd
mask = maskLayer
}
private func drawTrack(ctx: CGContext) {
let adjustDegree = Math.adjustDegree(setting.startAngle, degree: self.degree)
let centerX = currentCenter.x
let centerY = currentCenter.y
let radius = min(centerX, centerY)
ctx.setFillColor(setting.trackingColor.cgColor)
ctx.beginPath()
ctx.move(to: CGPoint(x: centerX, y: centerY))
ctx.addArc(center: CGPoint(x: centerX, y: centerY),
radius: radius,
startAngle: CGFloat(Math.degreesToRadians(setting.startAngle)),
endAngle: CGFloat(Math.degreesToRadians(adjustDegree)),
clockwise: false)
gitextract_i8frsf05/ ├── .gitignore ├── .swift-version ├── .travis.yml ├── CircleSlider.podspec ├── Example/ │ ├── CircleSlider/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── button_end.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── button_start.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── button_stop.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── thumb_image_1.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── thumb_image_2.imageset/ │ │ │ │ └── Contents.json │ │ │ └── thumb_image_3.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── CircleSlider.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── CircleSlider-Example.xcscheme │ ├── CircleSlider.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── CircleSlider.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── Target Support Files/ │ │ ├── CircleSlider/ │ │ │ ├── CircleSlider-dummy.m │ │ │ ├── CircleSlider-prefix.pch │ │ │ ├── CircleSlider-umbrella.h │ │ │ ├── CircleSlider.modulemap │ │ │ ├── CircleSlider.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-CircleSlider_Example/ │ │ │ ├── Info.plist │ │ │ ├── Pods-CircleSlider_Example-acknowledgements.markdown │ │ │ ├── Pods-CircleSlider_Example-acknowledgements.plist │ │ │ ├── Pods-CircleSlider_Example-dummy.m │ │ │ ├── Pods-CircleSlider_Example-frameworks.sh │ │ │ ├── Pods-CircleSlider_Example-resources.sh │ │ │ ├── Pods-CircleSlider_Example-umbrella.h │ │ │ ├── Pods-CircleSlider_Example.debug.xcconfig │ │ │ ├── Pods-CircleSlider_Example.modulemap │ │ │ └── Pods-CircleSlider_Example.release.xcconfig │ │ └── Pods-CircleSlider_Tests/ │ │ ├── Info.plist │ │ ├── Pods-CircleSlider_Tests-acknowledgements.markdown │ │ ├── Pods-CircleSlider_Tests-acknowledgements.plist │ │ ├── Pods-CircleSlider_Tests-dummy.m │ │ ├── Pods-CircleSlider_Tests-frameworks.sh │ │ ├── Pods-CircleSlider_Tests-resources.sh │ │ ├── Pods-CircleSlider_Tests-umbrella.h │ │ ├── Pods-CircleSlider_Tests.debug.xcconfig │ │ ├── Pods-CircleSlider_Tests.modulemap │ │ └── Pods-CircleSlider_Tests.release.xcconfig │ └── Tests/ │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Pod/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ ├── CircleSlider.swift │ ├── Math.swift │ └── TrackLayer.swift └── README.md
Condensed preview — 59 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (212K chars).
[
{
"path": ".gitignore",
"chars": 618,
"preview": "# OS X\n.DS_Store\n\n# Xcode\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.pers"
},
{
"path": ".swift-version",
"chars": 4,
"preview": "3.0\n"
},
{
"path": ".travis.yml",
"chars": 498,
"preview": "# references:\n# * http://www.objc.io/issue-6/travis-ci.html\n# * https://github.com/supermarin/xcpretty#usage\n\nlanguage: "
},
{
"path": "CircleSlider.podspec",
"chars": 602,
"preview": "Pod::Spec.new do |s|\ns.name = \"CircleSlider\"\ns.version = \"0.6.0\"\ns.summary = \"CircleSlider"
},
{
"path": "Example/CircleSlider/AppDelegate.swift",
"chars": 2173,
"preview": "//\n// AppDelegate.swift\n// CircleSlider\n//\n// Created by shushutochako on 11/17/2015.\n// Copyright (c) 2015 shushuto"
},
{
"path": "Example/CircleSlider/Base.lproj/LaunchScreen.xib",
"chars": 3924,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe"
},
{
"path": "Example/CircleSlider/Base.lproj/Main.storyboard",
"chars": 50207,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3"
},
{
"path": "Example/CircleSlider/Images.xcassets/AppIcon.appiconset/Contents.json",
"chars": 848,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"iphone\",\n \"size\" : \"20x20\",\n \"scale\" : \"2x\"\n },\n {\n \"idiom\""
},
{
"path": "Example/CircleSlider/Images.xcassets/Contents.json",
"chars": 62,
"preview": "{\n \"info\" : {\n \"version\" : 1,\n \"author\" : \"xcode\"\n }\n}"
},
{
"path": "Example/CircleSlider/Images.xcassets/button_end.imageset/Contents.json",
"chars": 159,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"filename\" : \"button_end.png\"\n }\n ],\n \"info\" : {\n \"ver"
},
{
"path": "Example/CircleSlider/Images.xcassets/button_start.imageset/Contents.json",
"chars": 161,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"filename\" : \"button_start.pdf\"\n }\n ],\n \"info\" : {\n \"v"
},
{
"path": "Example/CircleSlider/Images.xcassets/button_stop.imageset/Contents.json",
"chars": 160,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"filename\" : \"button_stop.pdf\"\n }\n ],\n \"info\" : {\n \"ve"
},
{
"path": "Example/CircleSlider/Images.xcassets/thumb_image_1.imageset/Contents.json",
"chars": 162,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"filename\" : \"thumb_image_1.pdf\"\n }\n ],\n \"info\" : {\n \""
},
{
"path": "Example/CircleSlider/Images.xcassets/thumb_image_2.imageset/Contents.json",
"chars": 162,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"filename\" : \"thumb_image_2.pdf\"\n }\n ],\n \"info\" : {\n \""
},
{
"path": "Example/CircleSlider/Images.xcassets/thumb_image_3.imageset/Contents.json",
"chars": 160,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"filename\" : \"thumb_image.pdf\"\n }\n ],\n \"info\" : {\n \"ve"
},
{
"path": "Example/CircleSlider/Info.plist",
"chars": 1151,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Example/CircleSlider/ViewController.swift",
"chars": 8115,
"preview": "//\n// ViewController.swift\n// CircleSlider\n//\n// Created by shushutochako on 11/17/2015.\n// Copyright (c) 2015 shush"
},
{
"path": "Example/CircleSlider.xcodeproj/project.pbxproj",
"chars": 27132,
"preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
},
{
"path": "Example/CircleSlider.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
"chars": 157,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n version = \"1.0\">\n <FileRef\n location = \"self:CircleSlider.xc"
},
{
"path": "Example/CircleSlider.xcodeproj/xcshareddata/xcschemes/CircleSlider-Example.xcscheme",
"chars": 4516,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0900\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "Example/CircleSlider.xcworkspace/contents.xcworkspacedata",
"chars": 230,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n version = \"1.0\">\n <FileRef\n location = \"group:CircleSlider.x"
},
{
"path": "Example/Podfile",
"chars": 216,
"preview": "source 'https://github.com/CocoaPods/Specs.git'\nuse_frameworks!\n\ntarget 'CircleSlider_Example' do\n pod \"CircleSlider\", "
},
{
"path": "Example/Pods/Local Podspecs/CircleSlider.podspec.json",
"chars": 547,
"preview": "{\n \"name\": \"CircleSlider\",\n \"version\": \"0.5.0\",\n \"summary\": \"CircleSlider is a Circular slider library. written in pu"
},
{
"path": "Example/Pods/Pods.xcodeproj/project.pbxproj",
"chars": 36637,
"preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
},
{
"path": "Example/Pods/Target Support Files/CircleSlider/CircleSlider-dummy.m",
"chars": 128,
"preview": "#import <Foundation/Foundation.h>\n@interface PodsDummy_CircleSlider : NSObject\n@end\n@implementation PodsDummy_CircleSlid"
},
{
"path": "Example/Pods/Target Support Files/CircleSlider/CircleSlider-prefix.pch",
"chars": 195,
"preview": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPO"
},
{
"path": "Example/Pods/Target Support Files/CircleSlider/CircleSlider-umbrella.h",
"chars": 316,
"preview": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPO"
},
{
"path": "Example/Pods/Target Support Files/CircleSlider/CircleSlider.modulemap",
"chars": 114,
"preview": "framework module CircleSlider {\n umbrella header \"CircleSlider-umbrella.h\"\n\n export *\n module * { export * }\n}\n"
},
{
"path": "Example/Pods/Target Support Files/CircleSlider/CircleSlider.xcconfig",
"chars": 535,
"preview": "CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/CircleSlider\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPO"
},
{
"path": "Example/Pods/Target Support Files/CircleSlider/Info.plist",
"chars": 808,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Example/Info.plist",
"chars": 828,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-acknowledgements.markdown",
"chars": 1237,
"preview": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## CircleSlider\n\nCopyright (c) 20"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-acknowledgements.plist",
"chars": 2116,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-dummy.m",
"chars": 154,
"preview": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_CircleSlider_Example : NSObject\n@end\n@implementation PodsDum"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-frameworks.sh",
"chars": 4678,
"preview": "#!/bin/sh\nset -e\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_D"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-resources.sh",
"chars": 5528,
"preview": "#!/bin/sh\nset -e\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nRESOURCES_TO_COPY=${PODS_ROOT}/re"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-umbrella.h",
"chars": 342,
"preview": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPO"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example.debug.xcconfig",
"chars": 678,
"preview": "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/CircleS"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example.modulemap",
"chars": 140,
"preview": "framework module Pods_CircleSlider_Example {\n umbrella header \"Pods-CircleSlider_Example-umbrella.h\"\n\n export *\n modu"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example.release.xcconfig",
"chars": 678,
"preview": "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/CircleS"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Info.plist",
"chars": 828,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-acknowledgements.markdown",
"chars": 1237,
"preview": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## CircleSlider\n\nCopyright (c) 20"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-acknowledgements.plist",
"chars": 2116,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-dummy.m",
"chars": 150,
"preview": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_CircleSlider_Tests : NSObject\n@end\n@implementation PodsDummy"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-frameworks.sh",
"chars": 4678,
"preview": "#!/bin/sh\nset -e\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_D"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-resources.sh",
"chars": 5528,
"preview": "#!/bin/sh\nset -e\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nRESOURCES_TO_COPY=${PODS_ROOT}/re"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-umbrella.h",
"chars": 338,
"preview": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPO"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests.debug.xcconfig",
"chars": 678,
"preview": "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/CircleS"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests.modulemap",
"chars": 136,
"preview": "framework module Pods_CircleSlider_Tests {\n umbrella header \"Pods-CircleSlider_Tests-umbrella.h\"\n\n export *\n module *"
},
{
"path": "Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests.release.xcconfig",
"chars": 678,
"preview": "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/CircleS"
},
{
"path": "Example/Tests/Info.plist",
"chars": 733,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Example/Tests/Tests.swift",
"chars": 762,
"preview": "import UIKit\nimport XCTest\nimport CircleSlider\n\nclass Tests: XCTestCase {\n \n override func setUp() {\n super"
},
{
"path": "LICENSE",
"chars": 1085,
"preview": "Copyright (c) 2015 shushutochako <shushutochako22@gmail.com>\n\nPermission is hereby granted, free of charge, to any perso"
},
{
"path": "Pod/Assets/.gitkeep",
"chars": 0,
"preview": ""
},
{
"path": "Pod/Classes/.gitkeep",
"chars": 0,
"preview": ""
},
{
"path": "Pod/Classes/CircleSlider.swift",
"chars": 9343,
"preview": "//\n// CircleSlider.swift\n// CircleSlider\n//\n// Created by shushutochako on 11/17/15.\n// Copyright © 2015 shushutocha"
},
{
"path": "Pod/Classes/Math.swift",
"chars": 2221,
"preview": "//\n// CircleSliderMath.swift\n// Pods\n//\n// Created by shushutochako on 11/17/15.\n// Copyright © 2015 shushutochako. "
},
{
"path": "Pod/Classes/TrackLayer.swift",
"chars": 2595,
"preview": "//\n// TrackLayer.swift\n// Pods\n//\n// Created by shushutochako on 11/17/15.\n// Copyright © 2015 shushutochako. All ri"
},
{
"path": "README.md",
"chars": 2882,
"preview": "# CircleSlider\n\n[](https://travis-ci"
}
]
About this extraction
This page contains the full source code of the shushutochako/CircleSlider GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 59 files (188.5 KB), approximately 54.5k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.