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
================================================
================================================
FILE: Example/CircleSlider/Base.lproj/Main.storyboard
================================================
================================================
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
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
$(EXECUTABLE_NAME)
CFBundleIdentifier
$(PRODUCT_BUNDLE_IDENTIFIER)
CFBundleInfoDictionaryVersion
6.0
CFBundleName
$(PRODUCT_NAME)
CFBundlePackageType
APPL
CFBundleShortVersionString
0.6.0
CFBundleSignature
????
CFBundleVersion
1
LSRequiresIPhoneOS
UILaunchStoryboardName
LaunchScreen
UIMainStoryboardFile
Main
UIRequiredDeviceCapabilities
armv7
UISupportedInterfaceOrientations
UIInterfaceOrientationPortrait
UIInterfaceOrientationLandscapeLeft
================================================
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 = ""; };
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 = ""; };
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 = ""; };
607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; };
607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
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 = ""; };
607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; };
6F53932EDF83B3CD75A7F6AA /* CircleSlider.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CircleSlider.podspec; path = ../CircleSlider.podspec; sourceTree = ""; };
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 = ""; };
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 = ""; };
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 = ""; };
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 = ""; };
/* 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 = "";
};
607FACD11AFB9204008FA782 /* Products */ = {
isa = PBXGroup;
children = (
607FACD01AFB9204008FA782 /* CircleSlider_Example.app */,
607FACE51AFB9204008FA782 /* CircleSlider_Tests.xctest */,
);
name = Products;
sourceTree = "";
};
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 = "";
};
607FACD31AFB9204008FA782 /* Supporting Files */ = {
isa = PBXGroup;
children = (
607FACD41AFB9204008FA782 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "";
};
607FACE81AFB9204008FA782 /* Tests */ = {
isa = PBXGroup;
children = (
607FACEB1AFB9204008FA782 /* Tests.swift */,
607FACE91AFB9204008FA782 /* Supporting Files */,
);
path = Tests;
sourceTree = "";
};
607FACE91AFB9204008FA782 /* Supporting Files */ = {
isa = PBXGroup;
children = (
607FACEA1AFB9204008FA782 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "";
};
607FACF51AFB993E008FA782 /* Podspec Metadata */ = {
isa = PBXGroup;
children = (
6F53932EDF83B3CD75A7F6AA /* CircleSlider.podspec */,
5204AEF712DEA2ED1A682562 /* README.md */,
DBE22831791D4DDA6F49A8BE /* LICENSE */,
);
name = "Podspec Metadata";
sourceTree = "";
};
76F2CBD6B086068199AF2429 /* Frameworks */ = {
isa = PBXGroup;
children = (
94CA1A2D1D0C805EFE523E5C /* Pods_CircleSlider_Example.framework */,
A56BFB830D9D0DFB8307FBFC /* Pods_CircleSlider_Tests.framework */,
);
name = Frameworks;
sourceTree = "";
};
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 = "";
};
/* 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 = "";
};
607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = {
isa = PBXVariantGroup;
children = (
607FACDF1AFB9204008FA782 /* Base */,
);
name = LaunchScreen.xib;
sourceTree = "";
};
/* 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
================================================
================================================
FILE: Example/CircleSlider.xcodeproj/xcshareddata/xcschemes/CircleSlider-Example.xcscheme
================================================
================================================
FILE: Example/CircleSlider.xcworkspace/contents.xcworkspacedata
================================================
================================================
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 = ""; };
059B72664BC4DEDCBF94E24DE9460CA3 /* Pods-CircleSlider_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CircleSlider_Tests-resources.sh"; sourceTree = ""; };
0BC53A9C3D8AB58F6A1EDC0E30E9E6F7 /* Pods-CircleSlider_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CircleSlider_Example-dummy.m"; sourceTree = ""; };
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 = ""; };
1A63D140A861714DD20CDC8C59EA0571 /* Pods-CircleSlider_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CircleSlider_Tests-frameworks.sh"; sourceTree = ""; };
1D6643155E7919B400D7A2A23E76AEB0 /* Pods-CircleSlider_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CircleSlider_Tests-acknowledgements.markdown"; sourceTree = ""; };
1F5A891C464321940903322659773D75 /* Pods-CircleSlider_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CircleSlider_Example-acknowledgements.markdown"; sourceTree = ""; };
205F22356842419FEC9CE6E92DACA29F /* Pods-CircleSlider_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CircleSlider_Tests-umbrella.h"; sourceTree = ""; };
2244967777521C1F8D9FB30A08481626 /* CircleSlider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CircleSlider.swift; path = Pod/Classes/CircleSlider.swift; sourceTree = ""; };
2DE5FC5FD8D3905AE5ADD33C4485B168 /* CircleSlider.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = CircleSlider.modulemap; sourceTree = ""; };
3D18715507E170976793DA151D55005A /* Pods-CircleSlider_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleSlider_Tests.debug.xcconfig"; sourceTree = ""; };
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 = ""; };
57AE48610F8BD546CA5D54DA6AC98C89 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
5B3F534491496F9BCF670987FD32E03C /* TrackLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrackLayer.swift; path = Pod/Classes/TrackLayer.swift; sourceTree = ""; };
6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
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 = ""; };
71769D75A52C5A360EBA66B114E3AEDE /* CircleSlider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CircleSlider.xcconfig; sourceTree = ""; };
814D9F67F395D5DD7F733E9E83B52153 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
85A843C5EF627E5C92D5DB26A44BB63D /* Pods-CircleSlider_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CircleSlider_Tests-dummy.m"; sourceTree = ""; };
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 = ""; };
B73ED233D61636F4226D70991BF32CCB /* CircleSlider-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CircleSlider-umbrella.h"; sourceTree = ""; };
BBFD0C08437DF58B969694243BC5DBFE /* Pods-CircleSlider_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-CircleSlider_Example.modulemap"; sourceTree = ""; };
CB55D63B216D78E16ABD57926540C49B /* Pods-CircleSlider_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CircleSlider_Example-resources.sh"; sourceTree = ""; };
CCF765AA20E3150E2E6B6DAA42DAB8C2 /* Math.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Math.swift; path = Pod/Classes/Math.swift; sourceTree = ""; };
CD7E14C8DF5157367C83207FD1F6A7DC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
E95D8226DE71692B055FDE68B33291CF /* Pods-CircleSlider_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-CircleSlider_Tests.modulemap"; sourceTree = ""; };
EA254F8FC3425F9B75078124FA910ABA /* Pods-CircleSlider_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleSlider_Example.release.xcconfig"; sourceTree = ""; };
EDE12D0874B87D8DCB716A938F61074F /* Pods-CircleSlider_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleSlider_Tests.release.xcconfig"; sourceTree = ""; };
EE6A154D72649ACE264B5073D024374B /* Pods-CircleSlider_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CircleSlider_Example-acknowledgements.plist"; sourceTree = ""; };
FE6734A57D3E4BCD4DD3ED9D0F68AA5A /* Pods-CircleSlider_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CircleSlider_Example-frameworks.sh"; sourceTree = ""; };
/* 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 = "";
};
4BD20A54DC04CF0FF5B274CC0F969B87 /* Development Pods */ = {
isa = PBXGroup;
children = (
76D53057A25E095BD91A209E5AE6AEC3 /* CircleSlider */,
);
name = "Development Pods";
sourceTree = "";
};
76D53057A25E095BD91A209E5AE6AEC3 /* CircleSlider */ = {
isa = PBXGroup;
children = (
2244967777521C1F8D9FB30A08481626 /* CircleSlider.swift */,
CCF765AA20E3150E2E6B6DAA42DAB8C2 /* Math.swift */,
5B3F534491496F9BCF670987FD32E03C /* TrackLayer.swift */,
E91E853C80CEB057E0E6101CDBC679C5 /* Support Files */,
);
name = CircleSlider;
path = ../..;
sourceTree = "";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
4BD20A54DC04CF0FF5B274CC0F969B87 /* Development Pods */,
BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */,
96816B8D0894BEC023BCAD48C91898AE /* Products */,
86E124B55A510B2093513520D67476E8 /* Targets Support Files */,
);
sourceTree = "";
};
86E124B55A510B2093513520D67476E8 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
D0E469A502EF12A9DC0608B1F7902C6F /* Pods-CircleSlider_Example */,
0052024811B17705D1BEC3C2D696C449 /* Pods-CircleSlider_Tests */,
);
name = "Targets Support Files";
sourceTree = "";
};
96816B8D0894BEC023BCAD48C91898AE /* Products */ = {
isa = PBXGroup;
children = (
12752937C2F1AA956062010A3B7D1446 /* CircleSlider.framework */,
6AA0A94BC36BC71421C94FB1B981A893 /* Pods_CircleSlider_Example.framework */,
4B7F3B30C083CC94385994FB91DB6A4A /* Pods_CircleSlider_Tests.framework */,
);
name = Products;
sourceTree = "";
};
BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = {
isa = PBXGroup;
children = (
D35AF013A5F0BAD4F32504907A52519E /* iOS */,
);
name = Frameworks;
sourceTree = "";
};
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 = "";
};
D35AF013A5F0BAD4F32504907A52519E /* iOS */ = {
isa = PBXGroup;
children = (
6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */,
);
name = iOS;
sourceTree = "";
};
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 = "";
};
/* 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
@interface PodsDummy_CircleSlider : NSObject
@end
@implementation PodsDummy_CircleSlider
@end
================================================
FILE: Example/Pods/Target Support Files/CircleSlider/CircleSlider-prefix.pch
================================================
#ifdef __OBJC__
#import
#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
#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
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
${EXECUTABLE_NAME}
CFBundleIdentifier
${PRODUCT_BUNDLE_IDENTIFIER}
CFBundleInfoDictionaryVersion
6.0
CFBundleName
${PRODUCT_NAME}
CFBundlePackageType
FMWK
CFBundleShortVersionString
0.6.0
CFBundleSignature
????
CFBundleVersion
${CURRENT_PROJECT_VERSION}
NSPrincipalClass
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Info.plist
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
${EXECUTABLE_NAME}
CFBundleIdentifier
${PRODUCT_BUNDLE_IDENTIFIER}
CFBundleInfoDictionaryVersion
6.0
CFBundleName
${PRODUCT_NAME}
CFBundlePackageType
FMWK
CFBundleShortVersionString
1.0.0
CFBundleSignature
????
CFBundleVersion
${CURRENT_PROJECT_VERSION}
NSPrincipalClass
================================================
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
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
================================================
PreferenceSpecifiers
FooterText
This application makes use of the following third party libraries:
Title
Acknowledgements
Type
PSGroupSpecifier
FooterText
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.
License
MIT
Title
CircleSlider
Type
PSGroupSpecifier
FooterText
Generated by CocoaPods - https://cocoapods.org
Title
Type
PSGroupSpecifier
StringsTable
Acknowledgements
Title
Acknowledgements
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Example/Pods-CircleSlider_Example-dummy.m
================================================
#import
@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
#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
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
${EXECUTABLE_NAME}
CFBundleIdentifier
${PRODUCT_BUNDLE_IDENTIFIER}
CFBundleInfoDictionaryVersion
6.0
CFBundleName
${PRODUCT_NAME}
CFBundlePackageType
FMWK
CFBundleShortVersionString
1.0.0
CFBundleSignature
????
CFBundleVersion
${CURRENT_PROJECT_VERSION}
NSPrincipalClass
================================================
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
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
================================================
PreferenceSpecifiers
FooterText
This application makes use of the following third party libraries:
Title
Acknowledgements
Type
PSGroupSpecifier
FooterText
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.
License
MIT
Title
CircleSlider
Type
PSGroupSpecifier
FooterText
Generated by CocoaPods - https://cocoapods.org
Title
Type
PSGroupSpecifier
StringsTable
Acknowledgements
Title
Acknowledgements
================================================
FILE: Example/Pods/Target Support Files/Pods-CircleSlider_Tests/Pods-CircleSlider_Tests-dummy.m
================================================
#import
@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
#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
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
$(EXECUTABLE_NAME)
CFBundleIdentifier
$(PRODUCT_BUNDLE_IDENTIFIER)
CFBundleInfoDictionaryVersion
6.0
CFBundleName
$(PRODUCT_NAME)
CFBundlePackageType
BNDL
CFBundleShortVersionString
1.0
CFBundleSignature
????
CFBundleVersion
1
================================================
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
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)
ctx.closePath()
ctx.fillPath()
}
}
================================================
FILE: README.md
================================================
# CircleSlider
[](https://travis-ci.org/shushutochako/CircleSlider)
[](http://cocoapods.org/pods/CircleSlider)
[](http://cocoapods.org/pods/CircleSlider)
[](http://cocoapods.org/pods/CircleSlider)
## Description and [appetize.io`s DEMO](https://appetize.io/app/mf8uu1ktc0r83tz4v2kzzumygm)

## Usage
To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Requirements
- iOS 8.0+
- Xcode 8.0
## Installation
### CocoaPods(iOS 8+)
CircleSlider is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:
```ruby
use_frameworks!
pod "CircleSlider"
```
### Manual Installation
The class file required for CircleSlider is located in the Classes folder in the root of this repository as listed below:
```
CircleSlider.swift
TrackLayer.swift
Math.swift
```
## Usage
To run the example project, clone the repo, and run pod install from the Example directory first.
### Simple
```
self.circleSlider = CircleSlider(frame: self.sliderArea.bounds, options: nil)
self.circleSlider?.addTarget(self, action: Selector("valueChange:"), forControlEvents: .ValueChanged)
self.sliderArea.addSubview(self.circleSlider)
```
### Custom
```
let options = [
.BarColor(UIColor(red: 198/255, green: 244/255, blue: 23/255, alpha: 0.2)),
.ThumbColor(UIColor(red: 141/255, green: 185/255, blue: 204/255, alpha: 1)),
.TrackingColor(UIColor(red: 78/255, green: 136/255, blue: 185/255, alpha: 1)),
.BarWidth(20),
.StartAngle(-45),
.MaxValue(150),
.MinValue(20)
]
self.circleSlider = CircleSlider(frame: self.sliderArea.bounds, options: options)
self.circleSlider?.addTarget(self, action: Selector("valueChange:"), forControlEvents: .ValueChanged)
self.sliderArea.addSubview(self.circleSlider)
```
### Change options after instantiation
```
self.circleSlider.changeOptions([.BarWidth(45)])
```
## Customization
- ``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) ``
- If you want to use as a progress, it should be this to false
- ``case ViewInset(CGFloat) ``
- ``case MinMaxSwitchTreshold(Float) ``
## Author
shushutochako, shushutochako22@gmail.com
## License
CircleSlider is available under the MIT license. See the LICENSE file for more info.