Skip to content

Commit

Permalink
changed global variables to public types to use each property from us…
Browse files Browse the repository at this point in the history
…er’s value.
  • Loading branch information
superbderrick committed Sep 24, 2017
1 parent 3ff331d commit ff54ee7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions SummerSlider/SummerSlider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import UIKit

public class SummerSlider: UISlider {

var markColor : UIColor!
var markWidth : CGFloat!
var markPositions : Array<Float>!
var selectedBarColor : UIColor!
var unselectedBarColor : UIColor!
public var markColor : UIColor!
public var markWidth : CGFloat!
public var markPositions : Array<Float>!
public var selectedBarColor : UIColor!
public var unselectedBarColor : UIColor!

public override init(frame: CGRect) {
super.init(frame: frame)
Expand Down

0 comments on commit ff54ee7

Please sign in to comment.