├── Pod
├── Assets
│ └── .gitkeep
└── Classes
│ ├── .gitkeep
│ └── VerticalProgressView.swift
├── _Pods.xcodeproj
├── Screenshots
└── screenshot.gif
├── Example
├── MLVerticalProgressView.xcodeproj
│ ├── project.xcworkspace
│ │ └── contents.xcworkspacedata
│ ├── xcshareddata
│ │ └── xcschemes
│ │ │ └── MLVerticalProgressView-Example.xcscheme
│ └── project.pbxproj
├── MLVerticalProgressView.xcworkspace
│ └── contents.xcworkspacedata
├── Podfile
├── MLVerticalProgressView
│ ├── Images.xcassets
│ │ └── AppIcon.appiconset
│ │ │ └── Contents.json
│ ├── ViewController.swift
│ ├── Info.plist
│ ├── AppDelegate.swift
│ └── Base.lproj
│ │ ├── LaunchScreen.xib
│ │ └── Main.storyboard
└── Tests
│ ├── Info.plist
│ └── Tests.swift
├── .gitignore
├── .travis.yml
├── MLVerticalProgressView.podspec
├── LICENSE
└── README.md
/Pod/Assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Pod/Classes/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/_Pods.xcodeproj:
--------------------------------------------------------------------------------
1 | Example/Pods/Pods.xcodeproj
--------------------------------------------------------------------------------
/Screenshots/screenshot.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/michallaskowski/MLVerticalProgressView/HEAD/Screenshots/screenshot.gif
--------------------------------------------------------------------------------
/Example/MLVerticalProgressView.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Example/MLVerticalProgressView.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Example/Podfile:
--------------------------------------------------------------------------------
1 | source 'https://github.com/CocoaPods/Specs.git'
2 | use_frameworks!
3 |
4 | target 'MLVerticalProgressView_Example', :exclusive => true do
5 | pod "MLVerticalProgressView", :path => "../"
6 | end
7 |
8 | target 'MLVerticalProgressView_Tests', :exclusive => true do
9 | pod "MLVerticalProgressView", :path => "../"
10 |
11 | end
12 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # OS X
2 | .DS_Store
3 |
4 | # Xcode
5 | build/
6 | *.pbxuser
7 | !default.pbxuser
8 | *.mode1v3
9 | !default.mode1v3
10 | *.mode2v3
11 | !default.mode2v3
12 | *.perspectivev3
13 | !default.perspectivev3
14 | xcuserdata
15 | *.xccheckout
16 | profile
17 | *.moved-aside
18 | DerivedData
19 | *.hmap
20 | *.ipa
21 |
22 | # Bundler
23 | .bundle
24 |
25 | # Carthage
26 | # We recommend against adding the Pods directory to your .gitignore. However
27 | # you should judge for yourself, the pros and cons are mentioned at:
28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
29 | #
30 | # Note: if you ignore the Pods directory, make sure to uncomment
31 | # `pod install` in .travis.yml
32 | #
33 |
34 | Example/Pods/
35 | **/Podfile.lock
36 |
--------------------------------------------------------------------------------
/Example/MLVerticalProgressView/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | }
33 | ],
34 | "info" : {
35 | "version" : 1,
36 | "author" : "xcode"
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | # references:
2 | # * http://www.objc.io/issue-6/travis-ci.html
3 | # * https://github.com/supermarin/xcpretty#usage
4 |
5 | language: objective-c
6 | osx_image: xcode7
7 |
8 | xcode_workspace: Example/MLVerticalProgressView.xcworkspace
9 | xcode_scheme: MLVerticalProgressView-Example
10 | xcode_sdk: iphonesimulator9.0
11 |
12 | cache: cocoapods
13 | podfile: Example/Podfile
14 | before_install:
15 | - gem install cocoapods # Since Travis is not always on latest version
16 | - pod install --project-directory=Example
17 |
18 | # install:
19 | # - gem install xcpretty --no-rdoc --no-ri --no-document --quiet
20 | # script:
21 | # - set -o pipefail && xcodebuild test -workspace Example/MLVerticalProgressView.xcworkspace -scheme MLVerticalProgressView-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c
22 | # - pod lib lint --quick
23 |
--------------------------------------------------------------------------------
/Example/Tests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/MLVerticalProgressView.podspec:
--------------------------------------------------------------------------------
1 | Pod::Spec.new do |s|
2 | s.name = "MLVerticalProgressView"
3 | s.version = "0.1.0"
4 | s.summary = "Vertical ProgressView for iOS in Swift"
5 | s.description = <<-DESC
6 | Vertical Progress View written in Swift, with @IBInspectables and progress change animation.
7 | DESC
8 | s.homepage = "https://github.com/michallaskowski/MLVerticalProgressView"
9 | s.license = 'MIT'
10 | s.author = { "michallaskowski" => "michal.laskowski.dev@gmail.com" }
11 | s.source = { :git => "https://github.com/michallaskowski/MLVerticalProgressView.git", :tag => s.version.to_s }
12 |
13 | s.platform = :ios, '8.0'
14 | s.requires_arc = true
15 |
16 | s.source_files = 'Pod/Classes/**/*'
17 |
18 | s.frameworks = 'UIKit'
19 | end
20 |
--------------------------------------------------------------------------------
/Example/Tests/Tests.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import XCTest
3 | import MLVerticalProgressView
4 |
5 | class Tests: XCTestCase {
6 |
7 | override func setUp() {
8 | super.setUp()
9 | // Put setup code here. This method is called before the invocation of each test method in the class.
10 | }
11 |
12 | override func tearDown() {
13 | // Put teardown code here. This method is called after the invocation of each test method in the class.
14 | super.tearDown()
15 | }
16 |
17 | func testExample() {
18 | // This is an example of a functional test case.
19 | XCTAssert(true, "Pass")
20 | }
21 |
22 | func testPerformanceExample() {
23 | // This is an example of a performance test case.
24 | self.measureBlock() {
25 | // Put the code you want to measure the time of here.
26 | }
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/Example/MLVerticalProgressView/ViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // VerticalProgressViewExample
4 | //
5 | // Created by mlaskowski on 11/08/15.
6 | // Copyright (c) 2015 mlaskowski. All rights reserved.
7 | //
8 |
9 | import UIKit
10 | import MLVerticalProgressView
11 |
12 | class ViewController: UIViewController {
13 |
14 | override func viewDidLoad() {
15 | super.viewDidLoad()
16 | // Do any additional setup after loading the view, typically from a nib.
17 | }
18 |
19 | override func didReceiveMemoryWarning() {
20 | super.didReceiveMemoryWarning()
21 | // Dispose of any resources that can be recreated.
22 | }
23 |
24 | @IBOutlet weak var progressView: VerticalProgressView!
25 |
26 | @IBAction func onSegmentedChange(sender: UISegmentedControl) {
27 |
28 | let progress : Float = Float(sender.selectedSegmentIndex) * 0.25
29 | self.progressView.setProgress(progress, animated: true)
30 | }
31 | }
32 |
33 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2015 michallaskowski
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy
4 | of this software and associated documentation files (the "Software"), to deal
5 | in the Software without restriction, including without limitation the rights
6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 | copies of the Software, and to permit persons to whom the Software is
8 | furnished to do so, subject to the following conditions:
9 |
10 | The above copyright notice and this permission notice shall be included in
11 | all copies or substantial portions of the Software.
12 |
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 | THE SOFTWARE.
20 |
--------------------------------------------------------------------------------
/Example/MLVerticalProgressView/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | UILaunchStoryboardName
26 | LaunchScreen
27 | UIMainStoryboardFile
28 | Main
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UISupportedInterfaceOrientations
34 |
35 | UIInterfaceOrientationPortrait
36 | UIInterfaceOrientationLandscapeLeft
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # MLVerticalProgressView
2 |
3 | [](https://travis-ci.org/michallaskowski/MLVerticalProgressView)
4 | [](http://cocoapods.org/pods/MLVerticalProgressView)
5 | [](https://github.com/Carthage/Carthage)
6 | [](http://cocoapods.org/pods/MLVerticalProgressView)
7 | [](http://cocoapods.org/pods/MLVerticalProgressView)
8 |
9 | Vertical Progress View written in Swift, with @IBInspectables and progress change animation.
10 |
11 | 
12 |
13 | ## Usage
14 |
15 | To run the example project, clone the repo, and run `pod install` from the Example directory first.
16 |
17 | ## Requirements
18 |
19 | ## Installation
20 |
21 | MLVerticalProgressView is available through [CocoaPods](http://cocoapods.org). To install
22 | it, simply add the following line to your Podfile:
23 |
24 | ```ruby
25 | pod "MLVerticalProgressView"
26 | ```
27 |
28 | ## Author
29 |
30 | michallaskowski, michal.laskowski.dev@gmail.com
31 |
32 | ## License
33 |
34 | MLVerticalProgressView is available under the MIT license. See the LICENSE file for more info.
35 |
--------------------------------------------------------------------------------
/Example/MLVerticalProgressView/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // MLVerticalProgressView
4 | //
5 | // Created by michallaskowski on 08/13/2015.
6 | // Copyright (c) 2015 michallaskowski. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | @UIApplicationMain
12 | class AppDelegate: UIResponder, UIApplicationDelegate {
13 |
14 | var window: UIWindow?
15 |
16 |
17 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
18 | // Override point for customization after application launch.
19 | return true
20 | }
21 |
22 | func applicationWillResignActive(application: UIApplication) {
23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
25 | }
26 |
27 | func applicationDidEnterBackground(application: UIApplication) {
28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
30 | }
31 |
32 | func applicationWillEnterForeground(application: UIApplication) {
33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
34 | }
35 |
36 | func applicationDidBecomeActive(application: UIApplication) {
37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
38 | }
39 |
40 | func applicationWillTerminate(application: UIApplication) {
41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
42 | }
43 |
44 |
45 | }
46 |
47 |
--------------------------------------------------------------------------------
/Pod/Classes/VerticalProgressView.swift:
--------------------------------------------------------------------------------
1 | //
2 | // VerticalProgressView.swift
3 | // VerticalProgressView
4 | //
5 | // Created by mlaskowski on 11/08/15.
6 | // Copyright (c) 2015 mlaskowski. All rights reserved.
7 | //
8 |
9 | import Foundation
10 | import UIKit
11 |
12 | @IBDesignable
13 | public class VerticalProgressView : UIView {
14 |
15 | @IBInspectable public var cornerRadius: CGFloat = 12;
16 | @IBInspectable public var fillDoneColor : UIColor = UIColor.blueColor()
17 | //@IBInspectable public var fillUndoneColor: UIColor = UIColor(red: 0, green: 0, blue: 1, alpha: 0.1)
18 | //@IBInspectable var fillRestColor : UIColor = UIColor.whiteColor()
19 | @IBInspectable public var animationDuration: Double = 0.5
20 |
21 | @IBInspectable public var progress: Float {
22 | get {
23 | return self.progressPriv
24 | }
25 | set{
26 | self.setProgress(newValue, animated: self.animationDuration > 0.0)
27 | }
28 | }
29 |
30 | var progressPriv: Float = 0.0
31 |
32 | public var filledView: CALayer?
33 |
34 | public override func layoutSubviews() {
35 | super.layoutSubviews()
36 | if self.filledView == nil {
37 | self.filledView = CALayer()
38 | self.filledView!.backgroundColor = self.fillDoneColor.CGColor
39 | self.layer.addSublayer(filledView!)
40 | }
41 | self.filledView!.frame = self.bounds
42 | self.filledView!.frame.origin.y = self.shouldHavePosition()
43 | }
44 |
45 | public override func prepareForInterfaceBuilder() {
46 | self.progressPriv = progress
47 | if self.progressPriv < 0 { progressPriv = 0 }
48 | else if(self.progressPriv > 1) { progressPriv = 1}
49 | }
50 |
51 | override public func drawRect(rect: CGRect) {
52 | super.drawRect(rect)
53 | let filledHeight = rect.size.height * CGFloat(self.progressPriv)
54 | self.setLayerProperties()
55 | let y = self.frame.size.height - filledHeight
56 | self.filledView!.frame = CGRectMake(0, y, rect.size.width, rect.size.height)
57 |
58 | }
59 |
60 | //public - for possible inheritance and customization
61 | public func setLayerProperties(){
62 | self.layer.cornerRadius = self.cornerRadius
63 | self.layer.masksToBounds = true
64 | }
65 |
66 | func shouldHavePosition() -> CGFloat {
67 | let filledHeight = self.frame.size.height * CGFloat(self.progressPriv)
68 | let position = self.frame.size.height - filledHeight
69 | return position
70 | }
71 |
72 | func setFilledPosition(position: CGFloat, animated: Bool) {
73 | if self.filledView == nil { return }
74 | //animated
75 | let duration: NSTimeInterval = animated ? self.animationDuration : 0;
76 | CATransaction.begin()
77 | CATransaction.setAnimationDuration(duration)
78 | self.filledView!.frame.origin.y = position
79 | CATransaction.commit()
80 |
81 | }
82 |
83 | public func setProgress(progress: Float, animated: Bool){
84 | //bounds check
85 | var val = progress
86 | if val < 0 { val = 0.0 }
87 | else if val > 1 { val = 1 }
88 | self.progressPriv = val
89 |
90 | setFilledPosition(self.shouldHavePosition(), animated: animated)
91 | }
92 |
93 |
94 |
95 | }
--------------------------------------------------------------------------------
/Example/MLVerticalProgressView/Base.lproj/LaunchScreen.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
20 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/Example/MLVerticalProgressView.xcodeproj/xcshareddata/xcschemes/MLVerticalProgressView-Example.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
29 |
35 |
36 |
37 |
38 |
39 |
44 |
45 |
47 |
53 |
54 |
55 |
56 |
57 |
63 |
64 |
65 |
66 |
75 |
77 |
83 |
84 |
85 |
86 |
87 |
88 |
94 |
96 |
102 |
103 |
104 |
105 |
107 |
108 |
111 |
112 |
113 |
--------------------------------------------------------------------------------
/Example/MLVerticalProgressView/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
--------------------------------------------------------------------------------
/Example/MLVerticalProgressView.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; };
11 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; };
12 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; };
13 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; };
14 | C15951331B7CF874000D86B3 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C15951321B7CF874000D86B3 /* ViewController.swift */; };
15 | C15951381B7CF894000D86B3 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C15951361B7CF894000D86B3 /* Main.storyboard */; };
16 | DC4FDE9F54E64400A843AAE9 /* Pods_MLVerticalProgressView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D78032061C5FA52208808839 /* Pods_MLVerticalProgressView_Example.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
17 | EAEBC37E91B40DFB23FEBC82 /* Pods_MLVerticalProgressView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CFEA3E1F831461FE8C178E8A /* Pods_MLVerticalProgressView_Tests.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
18 | /* End PBXBuildFile section */
19 |
20 | /* Begin PBXContainerItemProxy section */
21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = {
22 | isa = PBXContainerItemProxy;
23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */;
24 | proxyType = 1;
25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782;
26 | remoteInfo = MLVerticalProgressView;
27 | };
28 | /* End PBXContainerItemProxy section */
29 |
30 | /* Begin PBXFileReference section */
31 | 48288144E0EB391D58705972 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; };
32 | 607FACD01AFB9204008FA782 /* MLVerticalProgressView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MLVerticalProgressView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
33 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
34 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
35 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; };
36 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
37 | 607FACE51AFB9204008FA782 /* MLVerticalProgressView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MLVerticalProgressView_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
38 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
39 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; };
40 | 7AC4536EA763C4CA0F424EC8 /* Pods-MLVerticalProgressView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MLVerticalProgressView_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-MLVerticalProgressView_Example/Pods-MLVerticalProgressView_Example.release.xcconfig"; sourceTree = ""; };
41 | 88D9A0B51598378504EF0DC3 /* Pods-MLVerticalProgressView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MLVerticalProgressView_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MLVerticalProgressView_Example/Pods-MLVerticalProgressView_Example.debug.xcconfig"; sourceTree = ""; };
42 | 9077F9A6047044DC4F81CF41 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; };
43 | C15951321B7CF874000D86B3 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
44 | C15951371B7CF894000D86B3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
45 | C9EA95A45B00C194F6BA823F /* Pods-MLVerticalProgressView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MLVerticalProgressView_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MLVerticalProgressView_Tests/Pods-MLVerticalProgressView_Tests.debug.xcconfig"; sourceTree = ""; };
46 | CFEA3E1F831461FE8C178E8A /* Pods_MLVerticalProgressView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MLVerticalProgressView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
47 | D78032061C5FA52208808839 /* Pods_MLVerticalProgressView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MLVerticalProgressView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
48 | F73F117D0CF2E9D3DAA998F1 /* Pods-MLVerticalProgressView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MLVerticalProgressView_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-MLVerticalProgressView_Tests/Pods-MLVerticalProgressView_Tests.release.xcconfig"; sourceTree = ""; };
49 | FC0D6D9DF7AD436392B551D9 /* MLVerticalProgressView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = MLVerticalProgressView.podspec; path = ../MLVerticalProgressView.podspec; sourceTree = ""; };
50 | /* End PBXFileReference section */
51 |
52 | /* Begin PBXFrameworksBuildPhase section */
53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = {
54 | isa = PBXFrameworksBuildPhase;
55 | buildActionMask = 2147483647;
56 | files = (
57 | DC4FDE9F54E64400A843AAE9 /* Pods_MLVerticalProgressView_Example.framework in Frameworks */,
58 | );
59 | runOnlyForDeploymentPostprocessing = 0;
60 | };
61 | 607FACE21AFB9204008FA782 /* Frameworks */ = {
62 | isa = PBXFrameworksBuildPhase;
63 | buildActionMask = 2147483647;
64 | files = (
65 | EAEBC37E91B40DFB23FEBC82 /* Pods_MLVerticalProgressView_Tests.framework in Frameworks */,
66 | );
67 | runOnlyForDeploymentPostprocessing = 0;
68 | };
69 | /* End PBXFrameworksBuildPhase section */
70 |
71 | /* Begin PBXGroup section */
72 | 607FACC71AFB9204008FA782 = {
73 | isa = PBXGroup;
74 | children = (
75 | 607FACF51AFB993E008FA782 /* Podspec Metadata */,
76 | 607FACD21AFB9204008FA782 /* Example for MLVerticalProgressView */,
77 | 607FACE81AFB9204008FA782 /* Tests */,
78 | 607FACD11AFB9204008FA782 /* Products */,
79 | DA89B10B7D84929F52D84F0E /* Pods */,
80 | D52A59BD0C708B5D290FF88C /* Frameworks */,
81 | );
82 | sourceTree = "";
83 | };
84 | 607FACD11AFB9204008FA782 /* Products */ = {
85 | isa = PBXGroup;
86 | children = (
87 | 607FACD01AFB9204008FA782 /* MLVerticalProgressView_Example.app */,
88 | 607FACE51AFB9204008FA782 /* MLVerticalProgressView_Tests.xctest */,
89 | );
90 | name = Products;
91 | sourceTree = "";
92 | };
93 | 607FACD21AFB9204008FA782 /* Example for MLVerticalProgressView */ = {
94 | isa = PBXGroup;
95 | children = (
96 | C15951361B7CF894000D86B3 /* Main.storyboard */,
97 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */,
98 | C15951321B7CF874000D86B3 /* ViewController.swift */,
99 | 607FACDC1AFB9204008FA782 /* Images.xcassets */,
100 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */,
101 | 607FACD31AFB9204008FA782 /* Supporting Files */,
102 | );
103 | name = "Example for MLVerticalProgressView";
104 | path = MLVerticalProgressView;
105 | sourceTree = "";
106 | };
107 | 607FACD31AFB9204008FA782 /* Supporting Files */ = {
108 | isa = PBXGroup;
109 | children = (
110 | 607FACD41AFB9204008FA782 /* Info.plist */,
111 | );
112 | name = "Supporting Files";
113 | sourceTree = "";
114 | };
115 | 607FACE81AFB9204008FA782 /* Tests */ = {
116 | isa = PBXGroup;
117 | children = (
118 | 607FACEB1AFB9204008FA782 /* Tests.swift */,
119 | 607FACE91AFB9204008FA782 /* Supporting Files */,
120 | );
121 | path = Tests;
122 | sourceTree = "";
123 | };
124 | 607FACE91AFB9204008FA782 /* Supporting Files */ = {
125 | isa = PBXGroup;
126 | children = (
127 | 607FACEA1AFB9204008FA782 /* Info.plist */,
128 | );
129 | name = "Supporting Files";
130 | sourceTree = "";
131 | };
132 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = {
133 | isa = PBXGroup;
134 | children = (
135 | FC0D6D9DF7AD436392B551D9 /* MLVerticalProgressView.podspec */,
136 | 48288144E0EB391D58705972 /* README.md */,
137 | 9077F9A6047044DC4F81CF41 /* LICENSE */,
138 | );
139 | name = "Podspec Metadata";
140 | sourceTree = "";
141 | };
142 | D52A59BD0C708B5D290FF88C /* Frameworks */ = {
143 | isa = PBXGroup;
144 | children = (
145 | D78032061C5FA52208808839 /* Pods_MLVerticalProgressView_Example.framework */,
146 | CFEA3E1F831461FE8C178E8A /* Pods_MLVerticalProgressView_Tests.framework */,
147 | );
148 | name = Frameworks;
149 | sourceTree = "";
150 | };
151 | DA89B10B7D84929F52D84F0E /* Pods */ = {
152 | isa = PBXGroup;
153 | children = (
154 | 88D9A0B51598378504EF0DC3 /* Pods-MLVerticalProgressView_Example.debug.xcconfig */,
155 | 7AC4536EA763C4CA0F424EC8 /* Pods-MLVerticalProgressView_Example.release.xcconfig */,
156 | C9EA95A45B00C194F6BA823F /* Pods-MLVerticalProgressView_Tests.debug.xcconfig */,
157 | F73F117D0CF2E9D3DAA998F1 /* Pods-MLVerticalProgressView_Tests.release.xcconfig */,
158 | );
159 | name = Pods;
160 | sourceTree = "";
161 | };
162 | /* End PBXGroup section */
163 |
164 | /* Begin PBXNativeTarget section */
165 | 607FACCF1AFB9204008FA782 /* MLVerticalProgressView_Example */ = {
166 | isa = PBXNativeTarget;
167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "MLVerticalProgressView_Example" */;
168 | buildPhases = (
169 | 5F3F92C5952FD3C878F5CA99 /* Check Pods Manifest.lock */,
170 | 607FACCC1AFB9204008FA782 /* Sources */,
171 | 607FACCD1AFB9204008FA782 /* Frameworks */,
172 | 607FACCE1AFB9204008FA782 /* Resources */,
173 | 9BDE2B9D954801253EA10FF2 /* Embed Pods Frameworks */,
174 | 143DF3D20ABEE3B17C1133F0 /* Copy Pods Resources */,
175 | );
176 | buildRules = (
177 | );
178 | dependencies = (
179 | );
180 | name = MLVerticalProgressView_Example;
181 | productName = MLVerticalProgressView;
182 | productReference = 607FACD01AFB9204008FA782 /* MLVerticalProgressView_Example.app */;
183 | productType = "com.apple.product-type.application";
184 | };
185 | 607FACE41AFB9204008FA782 /* MLVerticalProgressView_Tests */ = {
186 | isa = PBXNativeTarget;
187 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "MLVerticalProgressView_Tests" */;
188 | buildPhases = (
189 | 1B3375A36EFE36177DB0EF32 /* Check Pods Manifest.lock */,
190 | 607FACE11AFB9204008FA782 /* Sources */,
191 | 607FACE21AFB9204008FA782 /* Frameworks */,
192 | 607FACE31AFB9204008FA782 /* Resources */,
193 | 7D296AA18B942CED0487FA85 /* Embed Pods Frameworks */,
194 | 4212792E945468DF2A798598 /* Copy Pods Resources */,
195 | );
196 | buildRules = (
197 | );
198 | dependencies = (
199 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */,
200 | );
201 | name = MLVerticalProgressView_Tests;
202 | productName = Tests;
203 | productReference = 607FACE51AFB9204008FA782 /* MLVerticalProgressView_Tests.xctest */;
204 | productType = "com.apple.product-type.bundle.unit-test";
205 | };
206 | /* End PBXNativeTarget section */
207 |
208 | /* Begin PBXProject section */
209 | 607FACC81AFB9204008FA782 /* Project object */ = {
210 | isa = PBXProject;
211 | attributes = {
212 | LastSwiftMigration = 0700;
213 | LastSwiftUpdateCheck = 0700;
214 | LastUpgradeCheck = 0630;
215 | ORGANIZATIONNAME = CocoaPods;
216 | TargetAttributes = {
217 | 607FACCF1AFB9204008FA782 = {
218 | CreatedOnToolsVersion = 6.3.1;
219 | };
220 | 607FACE41AFB9204008FA782 = {
221 | CreatedOnToolsVersion = 6.3.1;
222 | TestTargetID = 607FACCF1AFB9204008FA782;
223 | };
224 | };
225 | };
226 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "MLVerticalProgressView" */;
227 | compatibilityVersion = "Xcode 3.2";
228 | developmentRegion = English;
229 | hasScannedForEncodings = 0;
230 | knownRegions = (
231 | en,
232 | Base,
233 | );
234 | mainGroup = 607FACC71AFB9204008FA782;
235 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */;
236 | projectDirPath = "";
237 | projectRoot = "";
238 | targets = (
239 | 607FACCF1AFB9204008FA782 /* MLVerticalProgressView_Example */,
240 | 607FACE41AFB9204008FA782 /* MLVerticalProgressView_Tests */,
241 | );
242 | };
243 | /* End PBXProject section */
244 |
245 | /* Begin PBXResourcesBuildPhase section */
246 | 607FACCE1AFB9204008FA782 /* Resources */ = {
247 | isa = PBXResourcesBuildPhase;
248 | buildActionMask = 2147483647;
249 | files = (
250 | C15951381B7CF894000D86B3 /* Main.storyboard in Resources */,
251 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */,
252 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */,
253 | );
254 | runOnlyForDeploymentPostprocessing = 0;
255 | };
256 | 607FACE31AFB9204008FA782 /* Resources */ = {
257 | isa = PBXResourcesBuildPhase;
258 | buildActionMask = 2147483647;
259 | files = (
260 | );
261 | runOnlyForDeploymentPostprocessing = 0;
262 | };
263 | /* End PBXResourcesBuildPhase section */
264 |
265 | /* Begin PBXShellScriptBuildPhase section */
266 | 143DF3D20ABEE3B17C1133F0 /* Copy Pods Resources */ = {
267 | isa = PBXShellScriptBuildPhase;
268 | buildActionMask = 2147483647;
269 | files = (
270 | );
271 | inputPaths = (
272 | );
273 | name = "Copy Pods Resources";
274 | outputPaths = (
275 | );
276 | runOnlyForDeploymentPostprocessing = 0;
277 | shellPath = /bin/sh;
278 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MLVerticalProgressView_Example/Pods-MLVerticalProgressView_Example-resources.sh\"\n";
279 | showEnvVarsInLog = 0;
280 | };
281 | 1B3375A36EFE36177DB0EF32 /* Check Pods Manifest.lock */ = {
282 | isa = PBXShellScriptBuildPhase;
283 | buildActionMask = 2147483647;
284 | files = (
285 | );
286 | inputPaths = (
287 | );
288 | name = "Check Pods Manifest.lock";
289 | outputPaths = (
290 | );
291 | runOnlyForDeploymentPostprocessing = 0;
292 | shellPath = /bin/sh;
293 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
294 | showEnvVarsInLog = 0;
295 | };
296 | 4212792E945468DF2A798598 /* Copy Pods Resources */ = {
297 | isa = PBXShellScriptBuildPhase;
298 | buildActionMask = 2147483647;
299 | files = (
300 | );
301 | inputPaths = (
302 | );
303 | name = "Copy Pods Resources";
304 | outputPaths = (
305 | );
306 | runOnlyForDeploymentPostprocessing = 0;
307 | shellPath = /bin/sh;
308 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MLVerticalProgressView_Tests/Pods-MLVerticalProgressView_Tests-resources.sh\"\n";
309 | showEnvVarsInLog = 0;
310 | };
311 | 5F3F92C5952FD3C878F5CA99 /* Check Pods Manifest.lock */ = {
312 | isa = PBXShellScriptBuildPhase;
313 | buildActionMask = 2147483647;
314 | files = (
315 | );
316 | inputPaths = (
317 | );
318 | name = "Check Pods Manifest.lock";
319 | outputPaths = (
320 | );
321 | runOnlyForDeploymentPostprocessing = 0;
322 | shellPath = /bin/sh;
323 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
324 | showEnvVarsInLog = 0;
325 | };
326 | 7D296AA18B942CED0487FA85 /* Embed Pods Frameworks */ = {
327 | isa = PBXShellScriptBuildPhase;
328 | buildActionMask = 2147483647;
329 | files = (
330 | );
331 | inputPaths = (
332 | );
333 | name = "Embed Pods Frameworks";
334 | outputPaths = (
335 | );
336 | runOnlyForDeploymentPostprocessing = 0;
337 | shellPath = /bin/sh;
338 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MLVerticalProgressView_Tests/Pods-MLVerticalProgressView_Tests-frameworks.sh\"\n";
339 | showEnvVarsInLog = 0;
340 | };
341 | 9BDE2B9D954801253EA10FF2 /* Embed Pods Frameworks */ = {
342 | isa = PBXShellScriptBuildPhase;
343 | buildActionMask = 2147483647;
344 | files = (
345 | );
346 | inputPaths = (
347 | );
348 | name = "Embed Pods Frameworks";
349 | outputPaths = (
350 | );
351 | runOnlyForDeploymentPostprocessing = 0;
352 | shellPath = /bin/sh;
353 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MLVerticalProgressView_Example/Pods-MLVerticalProgressView_Example-frameworks.sh\"\n";
354 | showEnvVarsInLog = 0;
355 | };
356 | /* End PBXShellScriptBuildPhase section */
357 |
358 | /* Begin PBXSourcesBuildPhase section */
359 | 607FACCC1AFB9204008FA782 /* Sources */ = {
360 | isa = PBXSourcesBuildPhase;
361 | buildActionMask = 2147483647;
362 | files = (
363 | C15951331B7CF874000D86B3 /* ViewController.swift in Sources */,
364 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */,
365 | );
366 | runOnlyForDeploymentPostprocessing = 0;
367 | };
368 | 607FACE11AFB9204008FA782 /* Sources */ = {
369 | isa = PBXSourcesBuildPhase;
370 | buildActionMask = 2147483647;
371 | files = (
372 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */,
373 | );
374 | runOnlyForDeploymentPostprocessing = 0;
375 | };
376 | /* End PBXSourcesBuildPhase section */
377 |
378 | /* Begin PBXTargetDependency section */
379 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = {
380 | isa = PBXTargetDependency;
381 | target = 607FACCF1AFB9204008FA782 /* MLVerticalProgressView_Example */;
382 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */;
383 | };
384 | /* End PBXTargetDependency section */
385 |
386 | /* Begin PBXVariantGroup section */
387 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = {
388 | isa = PBXVariantGroup;
389 | children = (
390 | 607FACDF1AFB9204008FA782 /* Base */,
391 | );
392 | name = LaunchScreen.xib;
393 | sourceTree = "";
394 | };
395 | C15951361B7CF894000D86B3 /* Main.storyboard */ = {
396 | isa = PBXVariantGroup;
397 | children = (
398 | C15951371B7CF894000D86B3 /* Base */,
399 | );
400 | name = Main.storyboard;
401 | sourceTree = "";
402 | };
403 | /* End PBXVariantGroup section */
404 |
405 | /* Begin XCBuildConfiguration section */
406 | 607FACED1AFB9204008FA782 /* Debug */ = {
407 | isa = XCBuildConfiguration;
408 | buildSettings = {
409 | ALWAYS_SEARCH_USER_PATHS = NO;
410 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
411 | CLANG_CXX_LIBRARY = "libc++";
412 | CLANG_ENABLE_MODULES = YES;
413 | CLANG_ENABLE_OBJC_ARC = YES;
414 | CLANG_WARN_BOOL_CONVERSION = YES;
415 | CLANG_WARN_CONSTANT_CONVERSION = YES;
416 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
417 | CLANG_WARN_EMPTY_BODY = YES;
418 | CLANG_WARN_ENUM_CONVERSION = YES;
419 | CLANG_WARN_INT_CONVERSION = YES;
420 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
421 | CLANG_WARN_UNREACHABLE_CODE = YES;
422 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
423 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
424 | COPY_PHASE_STRIP = NO;
425 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
426 | ENABLE_STRICT_OBJC_MSGSEND = YES;
427 | GCC_C_LANGUAGE_STANDARD = gnu99;
428 | GCC_DYNAMIC_NO_PIC = NO;
429 | GCC_NO_COMMON_BLOCKS = YES;
430 | GCC_OPTIMIZATION_LEVEL = 0;
431 | GCC_PREPROCESSOR_DEFINITIONS = (
432 | "DEBUG=1",
433 | "$(inherited)",
434 | );
435 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
436 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
437 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
438 | GCC_WARN_UNDECLARED_SELECTOR = YES;
439 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
440 | GCC_WARN_UNUSED_FUNCTION = YES;
441 | GCC_WARN_UNUSED_VARIABLE = YES;
442 | IPHONEOS_DEPLOYMENT_TARGET = 8.3;
443 | MTL_ENABLE_DEBUG_INFO = YES;
444 | ONLY_ACTIVE_ARCH = YES;
445 | SDKROOT = iphoneos;
446 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
447 | };
448 | name = Debug;
449 | };
450 | 607FACEE1AFB9204008FA782 /* Release */ = {
451 | isa = XCBuildConfiguration;
452 | buildSettings = {
453 | ALWAYS_SEARCH_USER_PATHS = NO;
454 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
455 | CLANG_CXX_LIBRARY = "libc++";
456 | CLANG_ENABLE_MODULES = YES;
457 | CLANG_ENABLE_OBJC_ARC = YES;
458 | CLANG_WARN_BOOL_CONVERSION = YES;
459 | CLANG_WARN_CONSTANT_CONVERSION = YES;
460 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
461 | CLANG_WARN_EMPTY_BODY = YES;
462 | CLANG_WARN_ENUM_CONVERSION = YES;
463 | CLANG_WARN_INT_CONVERSION = YES;
464 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
465 | CLANG_WARN_UNREACHABLE_CODE = YES;
466 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
467 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
468 | COPY_PHASE_STRIP = NO;
469 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
470 | ENABLE_NS_ASSERTIONS = NO;
471 | ENABLE_STRICT_OBJC_MSGSEND = YES;
472 | GCC_C_LANGUAGE_STANDARD = gnu99;
473 | GCC_NO_COMMON_BLOCKS = YES;
474 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
475 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
476 | GCC_WARN_UNDECLARED_SELECTOR = YES;
477 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
478 | GCC_WARN_UNUSED_FUNCTION = YES;
479 | GCC_WARN_UNUSED_VARIABLE = YES;
480 | IPHONEOS_DEPLOYMENT_TARGET = 8.3;
481 | MTL_ENABLE_DEBUG_INFO = NO;
482 | SDKROOT = iphoneos;
483 | VALIDATE_PRODUCT = YES;
484 | };
485 | name = Release;
486 | };
487 | 607FACF01AFB9204008FA782 /* Debug */ = {
488 | isa = XCBuildConfiguration;
489 | baseConfigurationReference = 88D9A0B51598378504EF0DC3 /* Pods-MLVerticalProgressView_Example.debug.xcconfig */;
490 | buildSettings = {
491 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
492 | INFOPLIST_FILE = MLVerticalProgressView/Info.plist;
493 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
494 | MODULE_NAME = ExampleApp;
495 | PRODUCT_NAME = "$(TARGET_NAME)";
496 | };
497 | name = Debug;
498 | };
499 | 607FACF11AFB9204008FA782 /* Release */ = {
500 | isa = XCBuildConfiguration;
501 | baseConfigurationReference = 7AC4536EA763C4CA0F424EC8 /* Pods-MLVerticalProgressView_Example.release.xcconfig */;
502 | buildSettings = {
503 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
504 | INFOPLIST_FILE = MLVerticalProgressView/Info.plist;
505 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
506 | MODULE_NAME = ExampleApp;
507 | PRODUCT_NAME = "$(TARGET_NAME)";
508 | };
509 | name = Release;
510 | };
511 | 607FACF31AFB9204008FA782 /* Debug */ = {
512 | isa = XCBuildConfiguration;
513 | baseConfigurationReference = C9EA95A45B00C194F6BA823F /* Pods-MLVerticalProgressView_Tests.debug.xcconfig */;
514 | buildSettings = {
515 | BUNDLE_LOADER = "$(TEST_HOST)";
516 | FRAMEWORK_SEARCH_PATHS = (
517 | "$(SDKROOT)/Developer/Library/Frameworks",
518 | "$(inherited)",
519 | );
520 | GCC_PREPROCESSOR_DEFINITIONS = (
521 | "DEBUG=1",
522 | "$(inherited)",
523 | );
524 | INFOPLIST_FILE = Tests/Info.plist;
525 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
526 | PRODUCT_NAME = "$(TARGET_NAME)";
527 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MLVerticalProgressView_Example.app/MLVerticalProgressView_Example";
528 | };
529 | name = Debug;
530 | };
531 | 607FACF41AFB9204008FA782 /* Release */ = {
532 | isa = XCBuildConfiguration;
533 | baseConfigurationReference = F73F117D0CF2E9D3DAA998F1 /* Pods-MLVerticalProgressView_Tests.release.xcconfig */;
534 | buildSettings = {
535 | BUNDLE_LOADER = "$(TEST_HOST)";
536 | FRAMEWORK_SEARCH_PATHS = (
537 | "$(SDKROOT)/Developer/Library/Frameworks",
538 | "$(inherited)",
539 | );
540 | INFOPLIST_FILE = Tests/Info.plist;
541 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
542 | PRODUCT_NAME = "$(TARGET_NAME)";
543 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MLVerticalProgressView_Example.app/MLVerticalProgressView_Example";
544 | };
545 | name = Release;
546 | };
547 | /* End XCBuildConfiguration section */
548 |
549 | /* Begin XCConfigurationList section */
550 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "MLVerticalProgressView" */ = {
551 | isa = XCConfigurationList;
552 | buildConfigurations = (
553 | 607FACED1AFB9204008FA782 /* Debug */,
554 | 607FACEE1AFB9204008FA782 /* Release */,
555 | );
556 | defaultConfigurationIsVisible = 0;
557 | defaultConfigurationName = Release;
558 | };
559 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "MLVerticalProgressView_Example" */ = {
560 | isa = XCConfigurationList;
561 | buildConfigurations = (
562 | 607FACF01AFB9204008FA782 /* Debug */,
563 | 607FACF11AFB9204008FA782 /* Release */,
564 | );
565 | defaultConfigurationIsVisible = 0;
566 | defaultConfigurationName = Release;
567 | };
568 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "MLVerticalProgressView_Tests" */ = {
569 | isa = XCConfigurationList;
570 | buildConfigurations = (
571 | 607FACF31AFB9204008FA782 /* Debug */,
572 | 607FACF41AFB9204008FA782 /* Release */,
573 | );
574 | defaultConfigurationIsVisible = 0;
575 | defaultConfigurationName = Release;
576 | };
577 | /* End XCConfigurationList section */
578 | };
579 | rootObject = 607FACC81AFB9204008FA782 /* Project object */;
580 | }
581 |
--------------------------------------------------------------------------------